From 77e1a5b1beecf557bbe5ca5da22b25dc1b877dda Mon Sep 17 00:00:00 2001 From: Blaz Mrak Date: Mon, 13 Jan 2025 17:16:30 +0100 Subject: [PATCH] Added Nuxt configuration section to documentation (#826) --- docs/modules/ROOT/pages/web-frameworks.adoc | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/web-frameworks.adoc b/docs/modules/ROOT/pages/web-frameworks.adoc index 47edee92..a6f8ba0b 100644 --- a/docs/modules/ROOT/pages/web-frameworks.adoc +++ b/docs/modules/ROOT/pages/web-frameworks.adoc @@ -299,4 +299,16 @@ To mitigate that you must disable Vert.X URL validation to work with dynamic rou [source,bash] ---- mvn quarkus:dev -Dvertx.disableURIValidation=true ----- \ No newline at end of file +---- + +[#nuxt-config] +=== Nuxt Configuration + +Dynamic routes in Nuxt use invalid URL symbols in the URL, specifically `[`. 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 +----