You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried implementing autodll in nextjs environment but its not excluding the vendor pages from chunks such as main.js, common.js, app.js, index.js.
config.plugins.push(
new AutoDllPlugin({
inject: true, // will inject the DLL bundles to index.html
filename: '[name].js',
entry: {
vendor: [
'react',
'react-dom',
'styled-components',
]
}
})
);
The text was updated successfully, but these errors were encountered:
I have tried implementing autodll in nextjs environment but its not excluding the vendor pages from chunks such as main.js, common.js, app.js, index.js.
config.plugins.push(
new AutoDllPlugin({
inject: true, // will inject the DLL bundles to index.html
filename: '[name].js',
entry: {
vendor: [
'react',
'react-dom',
'styled-components',
]
}
})
);
The text was updated successfully, but these errors were encountered: