From b1d828cc8c76fbad65b48fa52e422f4f0bd8f874 Mon Sep 17 00:00:00 2001 From: Ryan Christian <33403762+rschristian@users.noreply.github.com> Date: Thu, 2 Feb 2023 04:57:23 -0600 Subject: [PATCH] docs: Correct `minify` option's default --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4df7b93..90e884e 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ plugins: [ |---|---|--- | `concurrency` | `number\|false` | Maximum number of threads to use. Default: the number of available CPUs.
_Pass `false` for single-threaded, sometimes faster for small projects._ | `sourceMap` | `boolean\|false` | Whether or not to produce source maps for the given input. | -| `minify` | `boolean\|false` | Minify using Terser, if turned off only comments will be stripped. | +| `minify` | `boolean\|true` | Minify using Terser, if turned off only comments will be stripped. | | `downlevel` | `boolean\|true` | Produces a bundle for `nomodule` browsers. (IE11, ...) | | `modernize` | `boolean\|true` | Attempt to upgrade ES5 syntax to equivalent modern syntax. | | `verbose` | `boolean\|false` | Will log performance information and information about polyfills. |