vue.config.js 903 B

1234567891011121314151617181920212223242526272829303132
  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. '/image-service': {
  18. target: 'http://adm.sagacloud.cn/',
  19. changeOrigin: true,
  20. pathRewrite: {
  21. '^/image-service': '/image-service',
  22. },
  23. },
  24. },
  25. },
  26. lintOnSave: false,
  27. publicPath: '/persagyTopo',
  28. // 打包名称
  29. outputDir: 'persagyTopo',
  30. // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
  31. assetsDir: 'static',
  32. }