This commit is contained in:
2025-04-08 10:20:43 +03:00
parent 77817885d5
commit 8082eae230
15 changed files with 96 additions and 50 deletions

View File

@@ -4,9 +4,9 @@ export default defineNuxtConfig({
"@nuxthub/core",
"@nuxt/ui",
"@nuxt/icon",
"@vee-validate/nuxt",
"nuxt-auth-utils",
"@nuxt/image",
"@vueuse/nuxt",
],
devtools: { enabled: true },
runtimeConfig: {
@@ -19,4 +19,37 @@ export default defineNuxtConfig({
ai: true,
database: true,
},
app: {
head: {
link: [
{
rel: "icon",
href: "/favicon.ico",
type: "image/x-icon",
sizes: "any",
},
{
rel: "icon",
href: "/favicon-32x32.png",
type: "image/png",
sizes: "32x32",
},
{
rel: "icon",
href: "/favicon-16x16.png",
type: "image/png",
sizes: "16x16",
},
{
rel: "apple-touch-icon",
href: "/apple-touch-icon.png",
sizes: "180x180",
},
{
rel: "manifest",
href: "/site.webmanifest",
},
],
},
},
});