come graph

This commit is contained in:
2025-12-01 14:56:16 +01:00
parent 5e4124ebbd
commit 992e01bb7b
9 changed files with 414 additions and 17 deletions

View File

@@ -1,10 +1,45 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
import { definePerson } from 'nuxt-schema-org/schema'
import tailwindcss from "@tailwindcss/vite";
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: {enabled: true},
app: {
head: {
title: 'Portfolio', // default fallback title
htmlAttrs: {
lang: 'en',
},
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
],
},
},
site: {
url: 'https://minimata.ch',
name: 'Portfolio',
description: 'Welcome to GODS',
defaultLocale: 'en', // not needed if you have @nuxtjs/i18n installed
},
schemaOrg: {
identity: definePerson({
name: 'Alexandre Serex-Müller',
// Profile Information, if applicable
image: '/profile-photo.jpg',
description: 'Software engineer, Game developer, Tools programmers and DevOps Engineer',
url: 'https://minimata.ch',
sameAs: [
'https://github.com/Minimata'
],
})
},
icon: {
mode: 'css',
cssLayer: 'base'
@@ -25,6 +60,8 @@ export default defineNuxtConfig({
'@nuxt/icon',
'@nuxt/image',
'@nuxt/scripts',
'@nuxt/test-utils'
'@nuxt/test-utils',
'motion-v/nuxt',
'@nuxtjs/seo'
]
})