1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- const {ESBuildMinifyPlugin} = require('esbuild-loader');
- const isProduction = process.env.NODE_ENV === 'production';
- const optimization = {
- minimize: isProduction,
- minimizer: [
- new ESBuildMinifyPlugin({
- css: true,
- legalComments: 'none',
- }),
- ],
- runtimeChunk: {
- name: entrypoint => `runtime~${entrypoint.name}`,
- },
- splitChunks: {
- chunks: 'async',
- minSize: 20000,
- minRemainingSize: 0,
- minChunks: 1,
- maxAsyncRequests: 30,
- maxInitialRequests: 30,
- enforceSizeThreshold: 50000,
- cacheGroups: {
- defaultVendors: {
- test: /[\\/]node_modules[\\/]/,
- priority: -10,
- reuseExistingChunk: true,
- },
- default: {
- minChunks: 2,
- priority: -20,
- reuseExistingChunk: true,
- },
- reactVendors: {
- name: 'react-vendors',
- chunks: 'all',
- test: /[\\/]node_modules[\\/](react|react-dom|react-dom-router|@remix-run|scheduler)/,
- priority: 10,
- reuseExistingChunk: true,
- },
- lottieVendors: {
- name: 'lottie',
- chunks: 'all',
- test: /[\\/]node_modules[\\/](lottie)/,
- priority: 10,
- reuseExistingChunk: true,
- },
- },
- },
- };
- module.exports = optimization;
|