From 0d7d144800434e7170c108f23ae95b360c26386f Mon Sep 17 00:00:00 2001 From: Christian Finnberg Date: Sun, 13 Oct 2019 22:10:20 +0300 Subject: [PATCH] Fix CSS filename for Webpack 4 config --- docs/documentation/customize/with-webpack.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/documentation/customize/with-webpack.html b/docs/documentation/customize/with-webpack.html index f7d0ee26..1eb71702 100644 --- a/docs/documentation/customize/with-webpack.html +++ b/docs/documentation/customize/with-webpack.html @@ -116,7 +116,7 @@ module.exports = { }, plugins: [ new MiniCssExtractPlugin({ - filename: 'css/[name].bundle.css' + filename: 'css/mystyles.css' }), ] };