-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.size-limit.js
More file actions
40 lines (39 loc) · 774 Bytes
/
.size-limit.js
File metadata and controls
40 lines (39 loc) · 774 Bytes
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
const modifyWebpackConfig = (config) => {
return {
...config,
resolve: {
...config.resolve,
fallback: {
path: require.resolve("path-browserify"),
},
},
externals: {
"react-native": true,
"react-native-remix-icon": true,
},
};
};
module.exports = [
{
path: "packages/kitchn/dist/index.cjs.js",
},
{
path: "packages/kitchn/dist/index.esm.js",
},
{
path: "packages/kitchn/dist/next/index.cjs.js",
modifyWebpackConfig,
},
{
path: "packages/kitchn/dist/next/index.esm.js",
modifyWebpackConfig,
},
{
path: "packages/kitchn/dist/native/index.cjs.js",
modifyWebpackConfig,
},
{
path: "packages/kitchn/dist/native/index.esm.js",
modifyWebpackConfig,
},
];