Skip to content

Commit 4660e77

Browse files
committed
Fix compatibility with webpack 2.1.0-beta.26
1 parent 59345b1 commit 4660e77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ module.exports = {
22
module: {
33
loaders: [{
44
test: /\.css$/,
5-
loader: "style!css"
5+
loader: "style-loader!css-loader"
66
}, {
77
test: /\.pug$/,
8-
loader: "pug?self"
8+
loader: "pug-loader?self"
99
}]
1010
}
1111
}

0 commit comments

Comments
 (0)