Files
Vermix-Gate/ui/vite.config.ts
T
2025-10-06 18:27:50 +02:00

12 lines
233 B
TypeScript

import { sveltekit } from '@sveltejs/kit/vite';
import tailwindcss from '@tailwindcss/vite';
import { defineConfig } from 'vite';
export default defineConfig({
server: {
port: 3001
},
plugins: [tailwindcss(), sveltekit()]
});