-
Notifications
You must be signed in to change notification settings - Fork 41
/
craco.config.js
46 lines (46 loc) · 984 Bytes
/
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
const path = require("path");
const CracoAlias = require("craco-alias");
module.exports = {
style: {
postcss: {
plugins: [require("tailwindcss"), require("autoprefixer")],
},
},
webpack: {
configure: (webpackConfig, { env, paths }) => {
if (process.env.NODE_ENV === "development") {
return webpackConfig;
}
webpackConfig.output = {
...webpackConfig.output,
// publicPath: "https://cdn.jsdelivr.net/gh/wrrwrr111/pretty-derby@master/build/",
publicPath: "/",
};
return webpackConfig;
},
},
babel: {
plugins: [
[
"import",
{
libraryName: "antd-mobile",
style: "css",
},
],
],
},
plugins: [
{
plugin: CracoAlias,
options: {
source: "options",
baseUrl: "./",
aliases: {
"@": path.resolve(__dirname, "src"),
},
// see in examples section
},
},
],
};