图书馆小程序
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.

13 lines
472 B

1 month ago
  1. const CONFIG = {
  2. // 开发环境配置
  3. development: {
  4. // assetsPath: 'https://m.siccat.com/public/static/images/', // 静态资源路径
  5. baseUrl: 'http://192.168.99.63:14000', // 后台接口请求地址
  6. },
  7. // 生产环境配置
  8. production: {
  9. // assetsPath: 'https://m.siccat.com/public/static/images/', // 静态资源路径
  10. baseUrl: 'http://192.168.99.63:14000', // 后台接口请求地址
  11. }
  12. };
  13. export default CONFIG[process.env.NODE_ENV];