vue.config.js 478 B

1234567891011121314151617
  1. module.exports = {
  2. // publicPath: process.env.NODE_ENV === "production" ? "/vueDataV/" : "/",
  3. publicPath: "./",
  4. productionSourceMap: false,
  5. lintOnSave: false,
  6. // devServer: {
  7. // port: 3434
  8. // },
  9. configureWebpack: {
  10. // 把原本需要写在webpack.config.js中的配置代码 写在这里 会自动合并
  11. externals: {
  12. 'jquery': '$',
  13. 'echarts': 'echarts',
  14. 'axios': 'axios'
  15. }
  16. }
  17. };