team-4/frontend/vite.config.ts

12 lines
274 B
TypeScript
Raw Normal View History

2025-08-02 13:28:10 +02:00
import tailwindcss from '@tailwindcss/vite';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [tailwindcss(), sveltekit()],
server: {
host: '127.0.0.1',
port: 5173
}
});