vue.config.js 501 B

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