docs: add missing comma (#23870)

This commit is contained in:
KeJun 2023-10-23 11:54:52 +08:00 committed by GitHub
parent 88ce9abbdf
commit 157d98b282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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']
}
}