Skip to content

Commit 2b58c97

Browse files
committed
fix: export app.config for correct defaults
1 parent e932e01 commit 2b58c97

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

components/app/AppLayout.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ useContentHead(config.value as any)
1919
<template>
2020
<div>
2121
<AppLoadingBar />
22-
<AppHeader v-if="Object.keys(config?.header).length" />
22+
<AppHeader />
2323
<slot />
24-
<AppFooter v-if="Object.keys(config?.footer).length" />
24+
<AppFooter />
2525
</div>
2626
</template>

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"plugins",
1313
"nuxt.schema.ts",
1414
"app.vue",
15+
"app.config.ts",
1516
"nuxt.config.ts",
1617
"tokens.config.ts"
1718
],

0 commit comments

Comments
 (0)