From ff17a85faa504a96856044f5740c747ce1fb489c Mon Sep 17 00:00:00 2001 From: George White Date: Thu, 23 May 2019 08:32:06 +0100 Subject: [PATCH] Fix typo in Webpack 4 configuration Fixed a missing single quote at the beginning of the string in the Webpack 4 configuration example. --- 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 32496e31..f7d0ee26 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/[name].bundle.css' }), ] };