vue.config.js 630 B

123456789101112131415161718192021222324
  1. module.exports = {
  2. devServer: {
  3. // 关闭esline
  4. overlay: {
  5. warnings: false,
  6. errors: false,
  7. },
  8. proxy: {
  9. '/labsl': {
  10. target: 'http://60.205.177.43:8080/',
  11. changeOrigin: true,
  12. pathRewrite: {
  13. '^/labsl': '/labsl',
  14. },
  15. },
  16. },
  17. },
  18. lintOnSave: false,
  19. publicPath: '/persagyTopo',
  20. // 打包名称
  21. outputDir: 'persagyTopo',
  22. // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
  23. assetsDir: 'static',
  24. }