From f7356c7a34407a73d732d6162651f9fd0f8bc7d3 Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Fri, 30 May 2025 19:03:03 +0900 Subject: [PATCH] docs(rolldown): fix regex pattern in withFilter example for SVG imports --- guide/rolldown.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/rolldown.md b/guide/rolldown.md index 9edf487e..ab6b6a39 100644 --- a/guide/rolldown.md +++ b/guide/rolldown.md @@ -126,7 +126,7 @@ export default defineConfig({ svgr({ /*...*/ }), - { load: { id: /\.svg?react$/ } }, + { load: { id: /\.svg\?react$/ } }, ), ], })