We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f933481 commit 498ba49Copy full SHA for 498ba49
app/webpack.config.js
@@ -214,7 +214,18 @@ module.exports = [
214
type: 'var',
215
name: ['_JUPYTERLAB', 'CORE_OUTPUT'],
216
},
217
- filename: 'bundle.js',
+ filename: '[name].[contenthash].js',
218
+ },
219
+ optimization: {
220
+ splitChunks: {
221
+ chunks: 'all',
222
+ cacheGroups: {
223
+ jlab_core: {
224
+ test: /[\\/]node_modules[\\/]@(jupyterlab|jupyter-notebook|lumino(?!\/datagrid))[\\/]/,
225
+ name: 'notebook_core',
226
227
228
229
230
resolve: {
231
fallback: { util: false },
0 commit comments