stammtisch-hersbruck/frontend/vite.config.ts
Daniel Michelberger 64c5139d71 feat: GPX-Parser mit Länge, Höhenmetern und Streckenvereinfachung
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-06 17:19:02 +02:00

17 lines
No EOL
432 B
TypeScript

import tailwindcss from '@tailwindcss/vite'
import { sveltekit } from '@sveltejs/kit/vite'
import { defineConfig } from 'vite'
import pkg from './package.json'
export default defineConfig({
plugins: [tailwindcss(), sveltekit()],
server: {
host: true,
port: 31337,
strictPort: true,
open: `http://${pkg.name}.localhost:31337`,
},
test: {
environment: 'jsdom',
},
} as any)