-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconfig-overrides.js
74 lines (71 loc) · 2.06 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const {
override,
fixBabelImports,
disableEsLint,
addLessLoader,
addWebpackExternals,
} = require("customize-cra");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
// https://github.com/arackaf/customize-cra
const configWebpackPlugins = () => config => {
// 太卡关闭一些插件
// 关闭`ESLINT`的插件 在`VSCode`校验
// 关闭`CaseSensitivePathsPlugin`插件
// 关闭`IgnorePlugin`插件
config.plugins = config.plugins.filter(
plugin =>
plugin.constructor.name !== "ESLintWebpackPlugin" &&
plugin.constructor.name !== "CaseSensitivePathsPlugin" &&
plugin.constructor.name !== "IgnorePlugin"
);
config.resolve.plugins = config.resolve.plugins.filter(
plugin => plugin.constructor.name !== "ModuleScopePlugin"
);
// 添加插件
process.env.NODE_ENV === "production" &&
config.plugins.push(
new UglifyJsPlugin({
uglifyOptions: { compress: { drop_debugger: true, drop_console: true } },
})
);
process.env.BUNDLE_ANALYZER === "true" &&
config.plugins.push(
new BundleAnalyzerPlugin({ analyzerMode: "static", reportFilename: "report.html" })
);
// `Babel mjs`
config.module.rules.push({
test: /\.mjs$/,
include: /node_modules/,
type: "javascript/auto",
});
return config;
};
module.exports = {
webpack: override(
addWebpackExternals({
"react": "React",
"react-dom": "ReactDOM",
}),
fixBabelImports("@arco-design/web-react", {
libraryDirectory: "es",
camel2DashComponentName: false,
style: true,
}),
fixBabelImports("@arco-design/web-react/icon", {
libraryDirectory: "react-icon",
camel2DashComponentName: false,
}),
fixBabelImports("lodash", {
libraryDirectory: "",
camel2DashComponentName: false,
}),
addLessLoader({
javascriptEnabled: true,
importLoaders: true,
localIdentName: "[name]__[hash:base64:5]",
}),
disableEsLint(),
configWebpackPlugins()
),
};