mirror of https://github.com/webpack/webpack.git
fix extract-text-plugin arguments
This commit is contained in:
parent
d3b72000ac
commit
732c85c7dc
|
|
@ -53,7 +53,7 @@ describe("HotTestCases", () => {
|
|||
test: /\.css$/,
|
||||
use: ExtractTextPlugin.extract({
|
||||
fallback: "style-loader",
|
||||
loader: "css-loader"
|
||||
use: "css-loader"
|
||||
})
|
||||
}]
|
||||
},
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ var moduleConfig = {
|
|||
test: /\.css$/,
|
||||
use: ExtractTextPlugin.extract({
|
||||
fallback: "style-loader",
|
||||
loader: "css-loader"
|
||||
use: "css-loader"
|
||||
})
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ module.exports = {
|
|||
{
|
||||
test: /\.css$/,
|
||||
loader: ExtractTextPlugin.extract({
|
||||
loader: "css-loader"
|
||||
use: "css-loader"
|
||||
})
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue