module.exports = {
webpack: (config, options) => {
if (!options.isServer && !options.dev) {
config.optimization.splitChunks.cacheGroups.babel = {
chunks: 'all',
name: 'babel',
test: /[\\/]node_modules[\\/](@babel|regenerator-runtime)[\\/]/
};
}
return config;
}
);```