You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
472 B
14 lines
472 B
const CONFIG = {
|
|
// 开发环境配置
|
|
development: {
|
|
// assetsPath: 'https://m.siccat.com/public/static/images/', // 静态资源路径
|
|
baseUrl: 'http://192.168.99.63:14000', // 后台接口请求地址
|
|
},
|
|
// 生产环境配置
|
|
production: {
|
|
// assetsPath: 'https://m.siccat.com/public/static/images/', // 静态资源路径
|
|
baseUrl: 'http://192.168.99.63:14000', // 后台接口请求地址
|
|
}
|
|
|
|
};
|
|
export default CONFIG[process.env.NODE_ENV];
|