Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Add -loader suffix to loader names
Browse files Browse the repository at this point in the history
This relates to changes in [email protected].
  • Loading branch information
jviide committed Nov 14, 2016
1 parent e842d4b commit b945ff4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const config = {
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: "babel",
loader: "babel-loader",
query: {
presets: [["es2015", {modules: false}], "react"],
plugins: ["transform-object-rest-spread"]
Expand All @@ -30,13 +30,13 @@ const config = {
test: /\.s?css$/,
loader: ExtractTextPlugin.extract([
{
loader: "css",
loader: "css-loader",
query: {
minimize: production
}
},
{
loader: "sass"
loader: "sass-loader"
}
])
},
Expand Down

0 comments on commit b945ff4

Please sign in to comment.