Skip to content

Commit

Permalink
Merge pull request #4119 from marcellamaki/fix-rtl
Browse files Browse the repository at this point in the history
Update webpack (again) to ensure devserver doesn't break
  • Loading branch information
rtibbles authored Jun 9, 2023
2 parents ac0eb8b + 37edea4 commit aa5a2cf
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,6 @@ module.exports = (env = {}) => {
modules: [rootNodeModules],
},
plugins: [
new webpack.NormalModuleReplacementPlugin(
/vuetify\/src\/stylus\//,
dummyModule
),
new BundleTracker({
filename: path.resolve(djangoProjectDir, 'build', 'webpack-stats.json'),
}),
Expand All @@ -145,7 +141,16 @@ module.exports = (env = {}) => {
cwd: process.cwd(),
}),
workboxPlugin,
],
].concat(
hot
? []
: [
new webpack.NormalModuleReplacementPlugin(
/vuetify\/src\/stylus\//,
dummyModule
)
]
),
stats: 'normal',
});
};

0 comments on commit aa5a2cf

Please sign in to comment.