From fbc54f087b90d0633e2cef9d1a5e40c23636ca49 Mon Sep 17 00:00:00 2001 From: Melloware Date: Sun, 4 Aug 2024 08:33:17 -0400 Subject: [PATCH] Fix #591: Add Svelte Dynamic route in docs (#737) --- docs/modules/ROOT/pages/web-frameworks.adoc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/modules/ROOT/pages/web-frameworks.adoc b/docs/modules/ROOT/pages/web-frameworks.adoc index a50686b6..960dbaea 100644 --- a/docs/modules/ROOT/pages/web-frameworks.adoc +++ b/docs/modules/ROOT/pages/web-frameworks.adoc @@ -288,3 +288,12 @@ quarkus.quinoa.enable-spa-routing=true ---- WARNING: Currently, for technical reasons, the Quinoa SPA routing configuration won't work with RESTEasy Classic. See xref:advanced-guides.adoc#spa-routing[SPA routing] for a workaround. + +Dynamic routes in Svelte may also use invalid URL's accoring to the URL specific with `+` symbol in the URL. See: https://github.com/quarkiverse/quarkus-quinoa/issues/591 + +To mitigate that you must disable Vert.X URL validation to work with dynamic routing using `-Dvertx.disableURIValidation=true` for example: + +[source,bash] +---- +mvn quarkus:dev -Dvertx.disableURIValidation=true +---- \ No newline at end of file