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.
19 lines
553 B
19 lines
553 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', // 后台接口请求地址
|
|
}
|
|
};
|
|
|
|
const config = CONFIG[process.env.NODE_ENV];
|
|
|
|
// 图书馆代码常量
|
|
config.LIB_CODE = '1201';
|
|
|
|
export default config;
|