vue.config.js 373 B

12345678910111213
  1. const axios_default_ip = "http://fyy_api.qingyaokeji.com";
  2. process.env.VUE_APP_BASE_URL = axios_default_ip;
  3. module.exports = {
  4. publicPath: './',
  5. outputDir: 'dist',
  6. assetsDir: 'static',
  7. indexPath: 'index.html',
  8. productionSourceMap: process.env.NODE_ENV === 'development',
  9. devServer: {
  10. // https: true,
  11. },
  12. lintOnSave: false // 禁用eslint 便于开发
  13. }