Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thescientist13/64e2910379c0a592b2f569e76c22e958 to your computer and use it in GitHub Desktop.
Save thescientist13/64e2910379c0a592b2f569e76c22e958 to your computer and use it in GitHub Desktop.
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