From c5fe9ea8389fe3cd97d5f6c582f44ae8a83a5daf Mon Sep 17 00:00:00 2001 From: Nikita <118117345+nikitadmitr@users.noreply.github.com> Date: Thu, 4 Apr 2024 19:02:52 +0300 Subject: [PATCH] docs: add missing comma (#26644) --- docs/2.guide/3.going-further/8.custom-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/2.guide/3.going-further/8.custom-routing.md b/docs/2.guide/3.going-further/8.custom-routing.md index 3d88d20c03..b3e408c2a3 100644 --- a/docs/2.guide/3.going-further/8.custom-routing.md +++ b/docs/2.guide/3.going-further/8.custom-routing.md @@ -105,7 +105,7 @@ export default defineNuxtConfig({ const resolver = createResolver(import.meta.url) // add a route files.push({ - path: resolver.resolve('./runtime/app/router-options') + path: resolver.resolve('./runtime/app/router-options'), optional: true }) }