From eb0756674a7d9a4a6d2602ee50eb8264744df75f Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 25 Sep 2024 12:34:01 +0200 Subject: [PATCH] docs(nuxt.config): put back `/api/*` in cloudflare exclude --- docs/nuxt.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/nuxt.config.ts b/docs/nuxt.config.ts index 9448f489..3e269e51 100644 --- a/docs/nuxt.config.ts +++ b/docs/nuxt.config.ts @@ -98,7 +98,8 @@ export default defineNuxtConfig({ exclude: [ '/components/*', '/getting-started/*', - '/composables/*' + '/composables/*', + '/api/*' ] } }