SvelteKit 2 (Svelte 5 runes) + Tailwind 4 + TypeScript frontend for the Marktvogt medieval market platform. - Market search with keyword FTS, location/radius, date range, sorting - List/map toggle (Leaflet with OSM tiles, dynamic import) - Market detail pages with SSR, SEO meta/OG tags, opening hours, admission prices, embedded map - Auth: login (password + magic link + OAuth), register, logout - Profile: view/edit display name + avatar, account deletion - 2FA: TOTP setup, verify, disable - httpOnly cookie auth with JWT access + session token refresh - Responsive layout with mobile hamburger nav - German UI text for DACH audience
8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [tailwindcss(), sveltekit()]
|
|
});
|