From e8a9a611f574a4dce263c4057a40c2f3371e2d9f Mon Sep 17 00:00:00 2001 From: yell0wsuit <5692900+yell0wsuit@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:16:53 +0700 Subject: [PATCH] Fix README.md markdown error Escaped the pipe character in the include's regexp --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c66277..8996df9 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ export default defineConfig({ | params | type | default | description | | ---------------------- | --------------------------------------------- | --------------------------------------------------------- | ------------------------------------------------------------------------------------------ | -| `include` | `string \| RegExp \| Array` | `/\.(html\|xml\|css\|json\|js\|mjs\|svg|yaml|yml|toml)$/` | Include all assets matching any of these conditions. | +| `include` | `string \| RegExp \| Array` | `/\.(html\|xml\|css\|json\|js\|mjs\|svg\|yaml\|yml\|toml)$/` | Include all assets matching any of these conditions. | | `exclude` | `string \| RegExp \| Array` | `-` | Exclude all assets matching any of these conditions. | | `threshold` | `number` | `0` | Only assets bigger than this size are processed (in bytes) | | `algorithm` | `string\| function` | `gzip` | The compression algorithm |