vue.config.js 522 B

12345678910111213141516171819202122
  1. module.exports = {
  2. parallel: false,
  3. lintOnSave: false,
  4. publicPath: './',
  5. devServer: {
  6. host: "127.0.0.1",
  7. port: 8080,
  8. disableHostCheck: true,
  9. proxy: {
  10. '/dt_screen/': {
  11. // target: 'http://43.143.230.108/',
  12. target: 'http://localhost:8084/',
  13. pathRewrite: {
  14. '^/dt_screen/':''
  15. }
  16. // changeOrigin: true,
  17. }
  18. }
  19. },
  20. productionSourceMap: true,
  21. }