electron-userland / electron-userland/electron-webpack
typings-for-css-modules-loader how to replace css-loader?
- Dominant language
- TypeScript
- Stars
- 902
- Forks
- 168
- PR merge metrics
- No merged PRs in 30d
Description
```
module.exports.module = {
rules: [
{
test: /\.scss/,
use: ExtractTextPlugin.extract({
disable: true,
use: [{
loader: "typings-for-css-modules-loader?sass=true", options: {
modules: false,
namedExport: false,
camelCase: false,
minimize: false,
localIdentName: "[local]_[hash:base64:5]"
}
}, "sass-loader"],
fallback: "style-loader?sourceMap=true"
}),
}
]
}
```
This has no effect at all, because the default css-loader cannot be replaced.!!!
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.