Revert nameModules in webpackConfig

pull/18318/head
Dariusz Niemczyk 2021-08-03 18:38:00 +02:00
parent cc1a1e751b
commit 06d536afbc
No known key found for this signature in database
GPG Key ID: 28DFE7164F497CB6
1 changed files with 3 additions and 7 deletions

View File

@ -113,7 +113,7 @@ module.exports = (env, argv) => {
// This fixes duplicate files showing up in chrome with sourcemaps enabled. // This fixes duplicate files showing up in chrome with sourcemaps enabled.
// See https://github.com/webpack/webpack/issues/7128 for more info. // See https://github.com/webpack/webpack/issues/7128 for more info.
namedModules: true, namedModules: false,
// Minification is normally enabled by default for webpack in production mode, but // Minification is normally enabled by default for webpack in production mode, but
// we use a CSS optimizer too and need to manage it ourselves. // we use a CSS optimizer too and need to manage it ourselves.
@ -528,18 +528,14 @@ module.exports = (env, argv) => {
devServer: { devServer: {
// serve unwebpacked assets from webapp. // serve unwebpacked assets from webapp.
contentBase: [ contentBase: [
'./src/',
'./webapp', './webapp',
'./bundles/**',
'./node_modules/matrix-react-sdk/**',
'./node_modules/matrix-js-sdk/**',
], ],
// Only output errors, warnings, or new compilations. // Only output errors, warnings, or new compilations.
// This hides the massive list of modules. // This hides the massive list of modules.
stats: 'minimal', stats: 'minimal',
hot: true, // hot: false,
injectHot: true, // injectHot: false,
hotOnly: true, hotOnly: true,
inline: true, inline: true,
}, },