12345678910111213141516171819202122232425262728293031323334353637 |
- module.exports = {
- devServer: {
- port: 8202,
- https: true,
- client: {
- progress: true,
- },
- proxy: {
- '^/api': {
- target: 'http://localhost:8200',
- ws: false,
- changeOrigin: true,
- logLevel: 'debug',
- pathRewrite: {
- '^/api': '/api',
- },
- }
- }
- },
- publicPath: '/mobile/',
- outputDir: '../src/main/resources/static/mobile',
- productionSourceMap: false,
-
-
-
-
-
-
-
-
-
-
-
-
- }
|