Skip to content

Commit 0ec4b0e

Browse files
authored
Merge pull request #498 from yandavid/develop
Fix indentation on ExtractTextPlugin example on the migrating page
2 parents 4ae24b4 + 137e07a commit 0ec4b0e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/guides/migrating.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ See [#2986](https://github.com/webpack/webpack/issues/2986) for the reason behin
8585

8686
## `json-loader` is not required anymore
8787

88-
When no loader has been configured for a JSON file, webpack will automatically try to load the JSON
88+
When no loader has been configured for a JSON file, webpack will automatically try to load the JSON
8989
file with the [json-loader](https://github.com/webpack/json-loader).
9090

9191
``` diff
@@ -94,7 +94,7 @@ file with the [json-loader](https://github.com/webpack/json-loader).
9494
- loader: "json-loader"
9595
- }
9696
```
97-
97+
9898
[We decided to do this](https://github.com/webpack/webpack/issues/3363) in order to iron out environment differences
9999
between webpack and node.js/browserify.
100100

@@ -183,9 +183,9 @@ module: {
183183
plugins: [
184184
- new ExtractTextPlugin("bundle.css", {allChunks: true, disable: false})
185185
+ new ExtractTextPlugin({
186-
+ filename: "bundle.css",
187-
+ disable: false,
188-
+ allChunks: true
186+
+ filename: "bundle.css",
187+
+ disable: false,
188+
+ allChunks: true
189189
+ })
190190
]
191191
```

0 commit comments

Comments
 (0)