Skip to content

Commit 5153267

Browse files
committed
rename top package
1 parent 498ba49 commit 5153267

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/webpack.prod.config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ config[0] = merge(config[0], {
1313
output: {
1414
// Add version argument when in production so the Jupyter server
1515
// allows caching of files (i.e., does not set the CacheControl header to no-cache to prevent caching static files)
16-
filename: '[name].[contenthash].js?v=[contenthash]'
16+
filename: '[name].[contenthash].js?v=[contenthash]',
1717
},
1818
optimization: {
19-
minimize: false
19+
minimize: false,
2020
},
2121
plugins: [
2222
new WPPlugin.JSONLicenseWebpackPlugin({
23-
excludedPackageTest: packageName =>
24-
packageName === '@jupyterlab/application-top'
25-
})
26-
]
23+
excludedPackageTest: (packageName) =>
24+
packageName === '@jupyter-notebook/app',
25+
}),
26+
],
2727
});
2828

2929
module.exports = config;

0 commit comments

Comments
 (0)