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