vue.config.js 553 B

1234567891011121314151617181920212223242526
  1. module.exports = {
  2. publicPath: './',
  3. productionSourceMap: false,
  4. lintOnSave: false,
  5. runtimeCompiler: false,
  6. devServer: {
  7. port: 8088,
  8. host: 'localhost',
  9. https: false,
  10. open: true,
  11. proxy: {
  12. '/': {
  13. target: 'http://120.27.95.106:9998/',
  14. ws: false,
  15. changeOrigin: true,
  16. xfwd: false
  17. }
  18. }
  19. },
  20. configureWebpack: {
  21. plugins: [],
  22. performance: {
  23. hints: false
  24. }
  25. }
  26. }