KI-AGENT: Neue Nuxt-Webseite für FEDEO erstellt

This commit is contained in:
2026-05-19 21:40:27 +02:00
parent 25ed99b356
commit 2d2e8552f0
9 changed files with 11487 additions and 0 deletions

21
website/nuxt.config.ts Normal file
View File

@@ -0,0 +1,21 @@
export default defineNuxtConfig({
css: ['~/assets/css/main.css'],
compatibilityDate: '2024-07-11',
nitro: {
preset: 'node-server'
},
app: {
head: {
title: 'FEDEO - Open-Source Unternehmenssoftware',
meta: [
{
name: 'description',
content: 'FEDEO bündelt Projekte, Zeiterfassung, Buchhaltung, Kommunikation, Lager, Inventar und Geräte in einer offenen Unternehmenssoftware.'
}
],
htmlAttrs: {
lang: 'de'
}
}
}
})