Skip to content

Commit

Permalink
docs(README): fix typo (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkiimm authored and michael-ciniawsky committed May 10, 2017
1 parent ae67b2a commit fe4cf7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -29,7 +29,7 @@ and will resolve them.
Good loaders for requiring your assets are the [file-loader](https://github.com/webpack/file-loader)
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)).

**file.css**
**file.js**
```js
import css from 'file.css';
```
Expand Down Expand Up @@ -473,7 +473,7 @@ module.exports = {
test: /\.css$/,
use: env === 'production'
? ExtractTextPlugin.extract({
fallback: 'style-loader'
fallback: 'style-loader',
use: [ 'css-loader' ]
})
: [ 'style-loader', 'css-loader' ]
Expand Down

0 comments on commit fe4cf7a

Please sign in to comment.