vue.config.js 644 B

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