Created
May 7, 2018 19:40
-
-
Save thescientist13/64e2910379c0a592b2f569e76c22e958 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module: { | |
rules: [{ | |
test: /\.(s*)css$/, | |
use: [ | |
MiniCssExtractPlugin.loader, | |
'css-loader', | |
'sass-loader' | |
] | |
}] | |
}, | |
plugins: [ | |
new MiniCssExtractPlugin({ | |
filename: '[name].[contenthash].css', | |
chunkFilename: '[id].[contenthash].css' | |
}), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment