feat: initial sketch with AI

This commit is contained in:
2026-08-21 17:09:32 +02:00
parent d3fe34cb22
commit 10aefdd655
40 changed files with 13491 additions and 459 deletions
+10 -1
View File
@@ -19,7 +19,8 @@ export default defineConfig({
name: 'dittmar.dev',
short_name: 'dttmr',
description: 'dittmar.dev frontend app',
theme_color: '#ffffff',
theme_color: '#0a0e1a',
background_color: '#0a0e1a',
display: 'standalone',
icons: [
{
@@ -41,4 +42,12 @@ export default defineConfig({
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
server: {
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true,
},
},
},
})