vue.config.js 361 B

1234567891011121314151617
  1. module.exports = {
  2. lintOnSave: false,
  3. publicPath: './',
  4. devServer: {
  5. host: "127.0.0.1",
  6. port: 8080,
  7. disableHostCheck: true,
  8. proxy: {
  9. '/dt_screen/': {
  10. target: 'http://43.143.230.108/',
  11. // changeOrigin: true,
  12. }
  13. }
  14. },
  15. productionSourceMap: true,
  16. }