Skip to content

Commit

Permalink
fix: add css-loader appropriately (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
evenstensberg committed May 14, 2017
1 parent 9fc9287 commit a71600e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/creator/yeoman/webpack-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,12 @@ module.exports = class WebpackGenerator extends Generator {
fallback: 'style-loader'`;
} else {
ExtractUseProps.push({
loader: '\'css-loader\'',
loader: '\'style-loader\'',
options: {
sourceMap: true
}
}, {
loader: '\'css-loader\'',
});
}
}
Expand Down

0 comments on commit a71600e

Please sign in to comment.