1234567891011121314151617181920212223 |
- module.exports = {
- publicPath: process.env.NODE_ENV === 'production' ? '/largeScreen/' : '/',
- outputDir: 'dist/largeScreen',
- productionSourceMap: false,
- devServer: {
- open: false,
- host: 'localhost',
- port: '8080',
- https: false,
- hotOnly: false,
- proxy: {
- '/service': {
- target: 'http://192.168.3.108',
- ws: true,
- changeOrigin: true,
- pathRewrite: {
- '^/service': ''
- }
- }
- }
- }
- }
|