-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcraco.config.js
92 lines (85 loc) · 2.81 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
const fs = require('fs');
const path = require('path');
const CracoLessPlugin = require('craco-less');
const Base64InlineLoaderPlugin = require('craco-base64-inline-loader');
const cssprefixer = require('postcss-prefix-selector');
const BUILD_PATH = path.resolve(__dirname, './build');
const RemoveCssHashPlugin = {
overrideWebpackConfig: ({
webpackConfig,
cracoConfig,
pluginOptions,
context: { env, paths }
}) => {
const plugins = webpackConfig.plugins;
plugins.forEach((plugin) => {
const options = plugin.options;
if (!options) {
return;
}
if (options.filename && options.filename.endsWith('.css')) {
console.log('rewriting target', options);
options.filename = 'static/css/[name].css';
options.chunkFilename = 'static/css/[name].chunk.css';
}
});
return webpackConfig;
}
};
const RemoveJsHashPlugin = {
overrideCracoConfig: ({ cracoConfig, pluginOptions, context: { env, paths } }) => {
cracoConfig.webpack = {
configure: {
optimization: {
splitChunks: {
cacheGroups: {
default: false,
vendors: false
}
},
runtimeChunk: false
},
output: {
path: BUILD_PATH,
filename: 'static/js/head.v2.min.js'
}
}
};
return cracoConfig;
}
};
module.exports = {
style: {
postcss: {
plugins: [
cssprefixer({
prefix: '.dekorator',
exclude: ['html', 'body', '.dekorator'],
transform: function(prefix, selector, prefixedSelector) {
if (selector.startsWith('body ')) {
return `body ${prefix} ${selector.slice(5)}`;
} else if (selector.startsWith('html ')) {
return `html ${prefix} ${selector.slice(5)}`;
} else if (selector.startsWith('.dekorator ')) {
return selector;
} else if (selector.includes('modal')) {
return selector;
}
return prefixedSelector;
}
})
]
}
},
plugins: [
{ plugin: CracoLessPlugin },
{
plugin: Base64InlineLoaderPlugin,
options: {
test: /\.svg$/
}
},
{ plugin: RemoveCssHashPlugin },
{ plugin: RemoveJsHashPlugin }
]
};