vue.config.js 445 B

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