vue.config.js 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. module.exports = {
  2. publicPath: '/', //部署路径后缀
  3. assetsDir: 'static', // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录。
  4. indexPath: 'index.html', // 指定生成的 index.html 的输出路径 (相对于 outputDir)。也可以是一个绝对路径。
  5. filenameHashing: true, // 文件名hash,默认
  6. lintOnSave: false, // 开发环境下通过 eslint-loader 在每次保存时 lint 代码
  7. productionSourceMap: false, // 关闭生产环境的 source map
  8. devServer: {
  9. overlay: {
  10. // 让浏览器 overlay 同时显示警告和错误
  11. warnings: true,
  12. errors: true
  13. },
  14. host: '172.16.120.200',
  15. port: 8080, // 端口号
  16. // https: false, // https:{type:Boolean}
  17. open: true, // 配置自动启动浏览器
  18. hotOnly: true, // 热更新
  19. proxy: {
  20. // 配置多个跨域
  21. '/': {
  22. target: 'http://172.16.120.92:8084/', //跨域接口的地址
  23. changeOrigin: false,
  24. pathRewrite: {
  25. '': '/'
  26. }
  27. },
  28. },
  29. headers: {
  30. 'Access-Control-Allow-Origin': '*',
  31. }
  32. }
  33. };