From 9cb863bc214aa835e7f217e7847b5370f806d15e Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 25 Sep 2024 12:25:27 +0200 Subject: [PATCH] docs(nuxt.config): remove `/api/*` in cloudflare exclude --- docs/nuxt.config.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/nuxt.config.ts b/docs/nuxt.config.ts index fdac294d..9448f489 100644 --- a/docs/nuxt.config.ts +++ b/docs/nuxt.config.ts @@ -50,8 +50,7 @@ export default defineNuxtConfig({ clientBundle: { scan: true, includeCustomCollections: true - }, - serverBundle: 'remote' + } }, content: { @@ -99,8 +98,7 @@ export default defineNuxtConfig({ exclude: [ '/components/*', '/getting-started/*', - '/composables/*', - '/api/*' + '/composables/*' ] } }