-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcraco.config.js
77 lines (75 loc) · 2.77 KB
/
craco.config.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
75
76
77
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const WebpackBar = require('webpackbar');
const CracoLessPlugin = require('craco-less');
// Don't open the browser during development
process.env.BROWSER = 'none';
module.exports = {
typescript: {
enableTypeChecking: true /* (default value) */,
},
babel: {
plugins: ['babel-plugin-styled-components'],
},
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
// List of default variables: https://github.com/ant-design/ant-design/blob/4.x-stable/components/style/themes/default.less
modifyVars: {
'@primary-color': '#c80707',
'@font-size-base': '16px',
'@layout-body-background': '#fff',
'@layout-footer-background': '#fff',
'@border-radius-base': '4px',
},
javascriptEnabled: true,
// strictMath: true,
// noIeCompat: true,
},
},
/*
cssLoaderOptions: {
modules: true,
localIdentName: '[local]_[hash:base64:5]',
},
*/
babelPluginImportOptions: {
libraryDirectory: 'es',
},
},
},
],
webpack: {
plugins: [
new WebpackBar({ profile: true }),
...(process.env.NODE_ENV === 'development' ? [new BundleAnalyzerPlugin({ openAnalyzer: false })] : []),
],
configure: {
// https://stackoverflow.com/a/69255531/1281305
module: {
rules: [
{
test: /\.m?js$/,
resolve: {
fullySpecified: false,
fallback: { "querystring": require.resolve("querystring-es3"), "stream": require.resolve("stream-browserify") }
},
},
],
},
// https://github.com/facebook/create-react-app/discussions/11767#discussioncomment-2421668
ignoreWarnings: [
function ignoreSourcemapsloaderWarnings(warning) {
return (
warning.module &&
warning.module.resource.includes('node_modules') &&
warning.details &&
warning.details.includes('source-map-loader')
);
},
],
},
},
};