Skip to content

Commit fe4cf7a

Browse files
jkiimmmichael-ciniawsky
authored andcommitted
docs(README): fix typo (#531)
1 parent ae67b2a commit fe4cf7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ and will resolve them.
2929
Good loaders for requiring your assets are the [file-loader](https://github.com/webpack/file-loader)
3030
and the [url-loader](https://github.com/webpack/url-loader) which you should specify in your config (see [below](https://github.com/michael-ciniawsky/css-loader#assets)).
3131

32-
**file.css**
32+
**file.js**
3333
```js
3434
import css from 'file.css';
3535
```
@@ -473,7 +473,7 @@ module.exports = {
473473
test: /\.css$/,
474474
use: env === 'production'
475475
? ExtractTextPlugin.extract({
476-
fallback: 'style-loader'
476+
fallback: 'style-loader',
477477
use: [ 'css-loader' ]
478478
})
479479
: [ 'style-loader', 'css-loader' ]

0 commit comments

Comments
 (0)