From 822d00126b069f8f6e90c6017b7117a9857aaf67 Mon Sep 17 00:00:00 2001 From: Kelley R Fischer <46363355+krfisc88@users.noreply.github.com> Date: Mon, 4 Jan 2021 01:29:33 -0600 Subject: [PATCH] Add missing comma to comment Comment regarding use of spread operator to extend existing minimizers lacked a comma causing syntax errors --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21763cc..9320d89 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ module.exports = { minimize: true, minimizer: [ // For webpack@5 you can use the `...` syntax to extend existing minimizers (i.e. `terser-webpack-plugin`), uncomment the next line - // `...` + // `...`, new CssMinimizerPlugin(), ], },