123456789101112131415161718192021 |
- module.exports = {
- lintOnSave: false,
- publicPath: './',
- devServer: {
- host: "127.0.0.1",
- port: 8081,
- disableHostCheck: true,
- proxy: {
- '/dt_screen/': {
- // target: 'http://43.143.230.108/',
- target: 'http://localhost:8084/',
- pathRewrite: {
- '^/dt_screen/':''
- }
- // changeOrigin: true,
- }
- }
- },
- productionSourceMap: true,
-
- }
|