1234567891011121314151617181920212223 |
- module.exports = {
- baseUrl: './',
-
- productionSourceMap: true,
- chainWebpack: config => config.plugins.delete('named-chunks'),
- devServer: {
- proxy: {
- '/api': {
-
- target: 'http://192.168.0.62:8080',
-
-
-
- changeOrigin: true,
-
-
-
- },
- },
-
- disableHostCheck: true,
- }
- }
|