]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Fix typo in Webpack 4 configuration
authorGeorge White <me@galexite.uk>
Thu, 23 May 2019 07:32:06 +0000 (08:32 +0100)
committerJeremy Thomas <bbxdesign@gmail.com>
Thu, 23 May 2019 07:38:07 +0000 (08:38 +0100)
Fixed a missing single quote at the beginning of the string in the Webpack 4 configuration example.

docs/documentation/customize/with-webpack.html

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