From b690bcceffeeb79c7b000a3509afec87307a46db Mon Sep 17 00:00:00 2001 From: jb-alvarado Date: Wed, 31 May 2023 22:54:34 +0200 Subject: [PATCH] hide chunk size warning --- nuxt.config.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 89e2f632..75e0fd31 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -54,13 +54,12 @@ export default defineNuxtConfig({ }, }, }, + build: { + chunkSizeWarningLimit: 800000, + }, }, experimental: { payloadExtraction: false, }, - - // build: { - // chunkSizeWarningLimit: 800000, - // }, })