28 lines
336 B
Vue
28 lines
336 B
Vue
|
<script setup lang="ts">
|
||
|
import { appName } from '~/constants'
|
||
|
|
||
|
useHead({
|
||
|
title: appName,
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<VitePwaManifest />
|
||
|
<NuxtLayout>
|
||
|
<NuxtPage />
|
||
|
</NuxtLayout>
|
||
|
</template>
|
||
|
|
||
|
<style>
|
||
|
html, body , #__nuxt{
|
||
|
height: 100vh;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
html.dark {
|
||
|
background: #222;
|
||
|
color: white;
|
||
|
}
|
||
|
</style>
|