Complete rewrite of the portfolio site from Vue 3 + Vuetify to SvelteKit with Svelte 5, Tailwind CSS, and static adapter for SSG prerendering. - Reframe identity as Founder & Engineer with Go/Svelte/TS/Postgres stack - Featured projects: Marktvogt and Infinity Tales with full descriptions - Experience timeline: add herzkarten.de role, update PromoData end date - svelte-i18n for EN/DE localization with reactive locale switching - Fix dark mode (Skeleton Labs CSS variable format mismatch) - Fix nav responsiveness across medium/large viewports - Fix experience card double-border on landing page - Update prettier config for Svelte parser support
10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite'
|
|
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
})
|