Skip to content

Commit 70c3cc0

Browse files
committed
feat: 更新项目基础配置
1 parent 2c3cdce commit 70c3cc0

File tree

2 files changed

+49
-59
lines changed

2 files changed

+49
-59
lines changed

config/config.ts

+48-46
Original file line numberDiff line numberDiff line change
@@ -51,55 +51,57 @@ export default defineConfig({
5151
dynamicImport: {
5252
loading: '@ant-design/pro-layout/es/PageLoading',
5353
},
54-
chainWebpack: isStart
55-
? undefined
56-
: function (config, { webpack }) {
57-
config.merge({
58-
optimization: {
59-
splitChunks: {
60-
chunks: 'all',
61-
minSize: 30000,
62-
// 共享该module的最小 chunk数量
54+
chainWebpack: function (config, { webpack }) {
55+
if (isStart) {
56+
return;
57+
}
58+
59+
config.merge({
60+
optimization: {
61+
splitChunks: {
62+
chunks: 'all',
63+
minSize: 30000,
64+
// 共享该module的最小 chunk数量
65+
minChunks: 2,
66+
// 最多异步加载该模块
67+
maxAsyncRequests: 10,
68+
automaticNameDelimiter: '.',
69+
// 根据被提取的 chunk 自动生成
70+
name: true,
71+
cacheGroups: {
72+
antd: {
73+
name: 'antd',
74+
test({ resource }: any): boolean {
75+
return (
76+
/[\\/]node_modules[\\/]@ant-design[\\/]/.test(resource) ||
77+
/[\\/]node_modules[\\/]antd.*[\\/]/.test(resource)
78+
);
79+
},
80+
minChunks: 2,
81+
reuseExistingChunk: true,
82+
priority: 30,
83+
},
84+
antv: {
85+
name: 'antv',
86+
test({ resource }: any): boolean {
87+
return /[\\/]node_modules[\\/]@antv[\\/]/.test(resource);
88+
},
6389
minChunks: 2,
64-
// 最多异步加载该模块
65-
maxAsyncRequests: 10,
66-
automaticNameDelimiter: '.',
67-
// 根据被提取的 chunk 自动生成
68-
name: true,
69-
cacheGroups: {
70-
antd: {
71-
name: 'antd',
72-
test({ resource }: any): boolean {
73-
return (
74-
/[\\/]node_modules[\\/]@ant-design[\\/]/.test(resource) ||
75-
/[\\/]node_modules[\\/]antd.*[\\/]/.test(resource)
76-
);
77-
},
78-
minChunks: 2,
79-
reuseExistingChunk: true,
80-
priority: 30,
81-
},
82-
antv: {
83-
name: 'antv',
84-
test({ resource }: any): boolean {
85-
return /[\\/]node_modules[\\/]@antv[\\/]/.test(resource);
86-
},
87-
minChunks: 2,
88-
reuseExistingChunk: true,
89-
priority: 20,
90-
},
91-
vendor: {
92-
name: 'vendors',
93-
test({ resource }: any): boolean {
94-
return /[\\/]node_modules[\\/]/.test(resource);
95-
},
96-
minChunks: 2,
97-
reuseExistingChunk: true,
98-
priority: 10,
99-
},
90+
reuseExistingChunk: true,
91+
priority: 20,
92+
},
93+
vendor: {
94+
name: 'vendors',
95+
test({ resource }: any): boolean {
96+
return /[\\/]node_modules[\\/]/.test(resource);
10097
},
98+
minChunks: 2,
99+
reuseExistingChunk: true,
100+
priority: 10,
101101
},
102102
},
103-
});
103+
},
104104
},
105+
});
106+
},
105107
});

config/routes.ts

+1-13
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,6 @@
1414
path: '/',
1515
layout: false,
1616
component: '../layouts',
17-
routes: [
18-
// {
19-
// path: '/welcome234',
20-
// name: 'welcome',
21-
// redirect: '/welcome',
22-
// },
23-
// {
24-
// path: '/welcome',
25-
// name: 'welcome',
26-
// icon: 'smile',
27-
// component: './exception/error',
28-
// },
29-
],
17+
routes: [],
3018
},
3119
];

0 commit comments

Comments
 (0)