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