We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bb351f commit 4b5fc8fCopy full SHA for 4b5fc8f
README.md
@@ -80,15 +80,15 @@ Keep your `webpack.config` as is just instead of using `css-loader` use `typings
80
before:
81
```js
82
webpackConfig.module.loaders: [
83
- { test: /\.css$/, loader: 'css?modules' }
+ { test: /\.css$/, loader: 'css?modules' },
84
{ test: /\.scss$/, loader: 'css?modules&sass' }
85
];
86
```
87
88
after:
89
90
91
- { test: /\.css$/, loader: 'typings-for-css-modules-loader?modules' }
+ { test: /\.css$/, loader: 'typings-for-css-modules-loader?modules' },
92
{ test: /\.scss$/, loader: 'typings-for-css-modules-loader?modules&sass' }
93
94
0 commit comments