Lint code

This commit is contained in:
2024-07-24 01:54:48 +02:00
parent 5c96b8eea0
commit f18bd1fd98
22 changed files with 13391 additions and 38 deletions

View File

@@ -3,7 +3,7 @@ export default defineAppConfig({
gray: 'neutral',
primary: 'gray',
icons: {
dynamic: true
}
}
dynamic: true,
},
},
})

View File

@@ -1,3 +1,15 @@
<script lang="ts" setup>
useHead({
link: [{ rel: 'icon', type: 'image/png', href: '/favicon.ico' }],
})
const head = useLocaleHead({
addDirAttribute: true,
identifierAttribute: 'id',
addSeoAttributes: true,
})
</script>
<template>
<Html
:dir="head.htmlAttrs.dir"
@@ -37,18 +49,6 @@
</Html>
</template>
<script lang="ts" setup>
useHead({
link: [{ rel: 'icon', type: 'image/png', href: '/favicon.ico' }]
})
const head = useLocaleHead({
addDirAttribute: true,
identifierAttribute: 'id',
addSeoAttributes: true
})
</script>
<style>
body {
font-family: 'DM Sans', sans-serif;