1234567891011121314151617 |
- module.exports = {
- lintOnSave: false,
- publicPath: './',
- devServer: {
- host: "127.0.0.1",
- port: 8080,
- disableHostCheck: true,
- proxy: {
- '/dt_screen/': {
- target: 'http://43.143.230.108/',
- // changeOrigin: true,
- }
- }
- },
- productionSourceMap: true,
-
- }
|