From 95d8707ec1792c36af2f3c137ccdf7cbedde31ba Mon Sep 17 00:00:00 2001 From: Michael Winter Date: Sat, 7 Mar 2026 17:16:07 +0100 Subject: [PATCH] Disable payload extraction to fix prerender warnings --- nuxt.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index a28775e..3a2692a 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -33,6 +33,6 @@ export default defineNuxtConfig({ prerender: { crawlLinks: true} }, experimental: { - payloadExtraction: true + payloadExtraction: false } })