From 64acbb60f74a834615005f0004701ae82e0b04ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= <i.am.the.tablet@proton.me> Date: Mon, 11 Nov 2024 17:56:50 -0500 Subject: [PATCH] refactor(nuxt): update app.vue wrap nuxt error boundary with `a-extract-style` component also remove commented-out `NuxtWelcome` component --- app.vue | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/app.vue b/app.vue index 68dda97..bc657cf 100644 --- a/app.vue +++ b/app.vue @@ -32,14 +32,15 @@ <a-extract-style> <NuxtLayout> <NuxtPage /> - <!-- <NuxtWelcome /> --> </NuxtLayout> </a-extract-style> - <nuxt-error-boundary> - <template #error="{ error, clearError }"> - <error-bound :error="error" /> - </template> - </nuxt-error-boundary> + <a-extract-style> + <nuxt-error-boundary> + <template #error="{ error, clearError }"> + <error-bound :error="error" /> + </template> + </nuxt-error-boundary> + </a-extract-style> </template> <style> body {