Commit f3c706bd authored by 邓晓峰's avatar 邓晓峰

fix: amap tip

parent da471ac7
This diff was suppressed by a .gitattributes entry.
......@@ -30,7 +30,7 @@ module.exports = {
ignoreMomentLocale: true,
nodeModulesTransform: {
type: 'all',
// exclude: ['@wisdom-map/arcgismap', '@wisdom-map/arcgismap/lib/arcgisapi'],
exclude: ['@wisdom-map/arcgismap', '@wisdom-map/arcgismap/lib/arcgisapi'],
},
proxy: proxy[REACT_APP_ENV || 'dev'],
// openAPI: {
......
/* eslint-disable */
// const proxyURL = process.env.NODE_ENV !== 'production' ? 'http://192.168.10.150:8777' : window.location.origin;
const proxyURL = 'http://192.168.12.47:8081';
const proxyURL = 'http://61.150.107.92:8200';
module.exports = {
assetsRoot: process.env.NODE_ENV !== 'production' ? proxyURL : './',
dev: {
......
......@@ -40,17 +40,19 @@ module.exports = require('./webpack.base.babel')({
}),
],
nodeEnv: 'production',
namedModules: true,
usedExports: true,
sideEffects: true,
concatenateModules: true,
runtimeChunk: 'single',
splitChunks: {
// minSize: 0,
maxSize: 100 * 1024, // 控制包的最大字节数
minSize: 10 * 1024, // 控制包的最小字节数
minChunks: 1,
cacheGroups: {
vendor: {
chunks: 'all',
maxInitialRequests: 10,
minSize: 0,
maxInitialRequests: 35,
test: /[\\/]node_modules[\\/]/,
name(module) {
const packageName = module.context.match(
......@@ -66,13 +68,6 @@ module.exports = require('./webpack.base.babel')({
test: /[\\/]src[\\/]components[\\/]/,
name: 'biz-component',
},
react: {
chunks: 'all',
minSize: 0,
maxInitialRequests: 10,
test: /[\\/]node_modules[\\/]react-dom[\\/]/,
name: 'react-dom',
}
},
},
},
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment