123456789101112131415161718192021222324252627282930 |
- module.exports = {
-
- publicPath: '/pc',
- assetsDir:"static",
- outputDir: 'child',
- indexPath:"index.html",
- filenameHashing:"true",
- productionSourceMap: false,
- lintOnSave: false,
- devServer: {
- host:'0.0.0.0',
- port: 8086,
- hot:true,
- disableHostCheck:true,
-
- open: true,
- proxy: {
- '/chat': {
-
-
- target: 'http://43.143.198.30:8089',
-
- changeOrigin: true,
- pathRewrite: {
- '^/chat': ''
- }
- },
- }
- },
- }
|