-
Notifications
You must be signed in to change notification settings - Fork 508
/
config-overrides.js
43 lines (41 loc) · 1.02 KB
/
config-overrides.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const {
override,
fixBabelImports,
addLessLoader,
addWebpackAlias,
} = require("customize-cra");
const path = require("path");
function resolve(dir) {
return path.join(__dirname, dir);
}
process.env.CI = "false";
const addCustomize = () => (config) => {
if (config.output.publicPath) {
config.output.publicPath =
process.env.NODE_ENV === "production"
? "/react-antd-admin-template/"
: "/";
}
if (config.resolve) {
config.resolve.extensions.push(".jsx");
}
return config;
};
module.exports = override(
// 针对antd实现按需打包: 根据import来打包(使用babel-plugin-import)
fixBabelImports("import", {
libraryName: "antd",
libraryDirectory: "es",
style: true, // 自动打包相关的样式
}),
// 使用less-loader对源码中的less的变量进行重新指定
addLessLoader({
javascriptEnabled: true,
modifyVars: { "@primary-color": "#1DA57A" },
}),
// 配置路径别名
addWebpackAlias({
"@": resolve("src"),
}),
addCustomize()
);