Skip to content

Commit

Permalink
rename top package
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed May 7, 2024
1 parent ba1c524 commit 693dbd8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/webpack.prod.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ config[0] = merge(config[0], {
output: {
// Add version argument when in production so the Jupyter server
// allows caching of files (i.e., does not set the CacheControl header to no-cache to prevent caching static files)
filename: '[name].[contenthash].js?v=[contenthash]'
filename: '[name].[contenthash].js?v=[contenthash]',
},
optimization: {
minimize: false
minimize: false,
},
plugins: [
new WPPlugin.JSONLicenseWebpackPlugin({
excludedPackageTest: packageName =>
packageName === '@jupyterlab/application-top'
})
]
excludedPackageTest: (packageName) =>
packageName === '@jupyter-notebook/app',
}),
],
});

module.exports = config;

0 comments on commit 693dbd8

Please sign in to comment.