diff options
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/webpack.config.js b/webpack.config.js index ce4f1da..7b4ec9f 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -25,15 +25,15 @@ module.exports = { type: "asset/resource", }, { - test: /\.css$/i, - use: [ - "style-loader", + test: /\.css$/, + use: ["style-loader", { loader: "css-loader", options: { - importLoaders: 1, - modules: true, - }, + modules: { + namedExport: false, + }, + } }, ], }, |
