nitro-react/craco.config.js

47 lines
1.5 KiB
JavaScript
Raw Normal View History

2021-09-16 06:48:43 +02:00
module.exports = {
eslint: {
2021-09-17 05:47:07 +02:00
enable: false
2021-09-17 05:16:54 +02:00
},
webpack: {
configure: (webpackConfig) => ({
...webpackConfig,
2022-03-15 21:56:15 +01:00
module: {
...webpackConfig.module,
rules: [
2022-03-15 23:38:48 +01:00
...webpackConfig.module.rules
2022-03-15 21:56:15 +01:00
].map(rule =>
{
if(!rule.oneOf) return rule;
return {
...rule,
oneOf: rule.oneOf.map((ruleObject) =>
{
if(!new RegExp(ruleObject.test).test('.ts') || !ruleObject.include) return ruleObject;
return { ...ruleObject, include: undefined };
})
};
})
},
2021-09-20 10:17:38 +02:00
optimization: {
...webpackConfig.optimization,
splitChunks: {
cacheGroups: {
vendor: {
name: 'vendors',
test: /[\\/]node_modules[\\/]/,
chunks: 'all',
},
renderer: {
name: 'renderer',
test: /[\\/]node_modules[\\/]@nitrots[\\/]nitro-renderer[\\/]/,
chunks: 'all',
}
}
}
2021-09-17 05:16:54 +02:00
}
})
2021-09-16 06:48:43 +02:00
}
}