import tailwindcss from '@tailwindcss/vite'; import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vite'; export default defineConfig({ plugins: [tailwindcss(), sveltekit()], server: { proxy: { '/admin': { target: 'http://localhost:3333', changeOrigin: true, rewrite: (path) => path.replace(/^\/admin/, '') } } } });