File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ See [#2986](https://github.com/webpack/webpack/issues/2986) for the reason behin
85
85
86
86
## ` json-loader ` is not required anymore
87
87
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
89
89
file with the [ json-loader] ( https://github.com/webpack/json-loader ) .
90
90
91
91
``` diff
@@ -94,7 +94,7 @@ file with the [json-loader](https://github.com/webpack/json-loader).
94
94
- loader: "json-loader"
95
95
- }
96
96
```
97
-
97
+
98
98
[ We decided to do this] ( https://github.com/webpack/webpack/issues/3363 ) in order to iron out environment differences
99
99
between webpack and node.js/browserify.
100
100
@@ -183,9 +183,9 @@ module: {
183
183
plugins: [
184
184
- new ExtractTextPlugin("bundle.css", {allChunks: true, disable: false})
185
185
+ new ExtractTextPlugin({
186
- + filename: "bundle.css",
187
- + disable: false,
188
- + allChunks: true
186
+ + filename: "bundle.css",
187
+ + disable: false,
188
+ + allChunks: true
189
189
+ })
190
190
]
191
191
```
You can’t perform that action at this time.
0 commit comments