From: George White Date: Thu, 23 May 2019 07:32:06 +0000 (+0100) Subject: Fix typo in Webpack 4 configuration X-Git-Tag: 0.8.0~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff17a85faa504a96856044f5740c747ce1fb489c;p=thirdparty%2Fbulma.git Fix typo in Webpack 4 configuration Fixed a missing single quote at the beginning of the string in the Webpack 4 configuration example. --- diff --git a/docs/documentation/customize/with-webpack.html b/docs/documentation/customize/with-webpack.html index 32496e319..f7d0ee261 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' }), ] };