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.
2 parents 892ed63 + 4b5fc8f commit 8d9ef8dCopy full SHA for 8d9ef8d
README.md
@@ -88,15 +88,15 @@ Keep your `webpack.config` as is just instead of using `css-loader` use `typings
88
before:
89
```js
90
webpackConfig.module.loaders: [
91
- { test: /\.css$/, loader: 'css?modules' }
+ { test: /\.css$/, loader: 'css?modules' },
92
{ test: /\.scss$/, loader: 'css?modules&sass' }
93
];
94
```
95
96
after:
97
98
99
- { test: /\.css$/, loader: 'typings-for-css-modules-loader?modules' }
+ { test: /\.css$/, loader: 'typings-for-css-modules-loader?modules' },
100
{ test: /\.scss$/, loader: 'typings-for-css-modules-loader?modules&sass' }
101
102
0 commit comments