From 157d98b282ce79617be5fc2a7d5024ca89144e54 Mon Sep 17 00:00:00 2001 From: KeJun Date: Mon, 23 Oct 2023 11:54:52 +0800 Subject: [PATCH] docs: add missing comma (#23870) --- docs/1.getting-started/10.deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.getting-started/10.deployment.md b/docs/1.getting-started/10.deployment.md index a0bfbff5c9..e2bf1c1d02 100644 --- a/docs/1.getting-started/10.deployment.md +++ b/docs/1.getting-started/10.deployment.md @@ -100,7 +100,7 @@ You can manually specify routes that [Nitro](/docs/guide/concepts/server-engine) defineNuxtConfig({ nitro: { prerender: { - routes: ['/user/1', '/user/2'] + routes: ['/user/1', '/user/2'], ignore: ['/dynamic'] } }