vue.config.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. module.exports = {
  2. lintOnSave: false,
  3. devServer: {
  4. host:'0.0.0.0',
  5. port:8000, // 服务端口
  6. // port:8080,
  7. open: true,//配置自动启动浏览器
  8. proxy: { // 设置代理
  9. '/metroapi': {
  10. target: 'http://192.168.20.58:8086',//
  11. changeOrigin: true, //允许跨域
  12. pathRewrite: {
  13. '^/metroapi': ''
  14. }
  15. },
  16. // '/apis': {
  17. // target: 'http://192.168.20.54:7777',//
  18. // changeOrigin: true, //允许跨域 再设立一个可以跨不同的域
  19. // pathRewrite: {
  20. // '^/apis': ''
  21. // }
  22. // }
  23. },
  24. },
  25. publicPath: process.env.NODE_ENV === 'production' ? './' : '/', //部署后请求路径
  26. outputDir:'dist', // 打包的目录
  27. // css: { // 全局引用common.styl文件夹,在main.js中引用不起作用
  28. // loaderOptions: {
  29. // // 给 stylus-loader 传递选项
  30. // stylus: {
  31. // import: '~@/assets/styles/common.styl'
  32. // }
  33. // }
  34. // },
  35. // chainWebpack: (config) => {
  36. // config.entry('main').add('babel-polyfill');
  37. // },
  38. // transpileDependencies: [
  39. // 'view-design' // 指定对第三方组件也进行babel-polyfill处理
  40. // ]
  41. };