Fix typo in Webpack 4 configuration

Fixed a missing single quote at the beginning of the string in the Webpack 4 configuration example.
This commit is contained in:
George White 2019-05-23 08:32:06 +01:00 committed by Jeremy Thomas
parent 9f18c27f03
commit ff17a85faa

View File

@ -116,7 +116,7 @@ module.exports = {
},
plugins: [
new MiniCssExtractPlugin({
filename: css/[name].bundle.css'
filename: 'css/[name].bundle.css'
}),
]
};