import { sveltekit } from '@sveltejs/kit/vite'; import tailwindcss from '@tailwindcss/vite'; import { defineConfig } from 'vite'; // NOTE: the production keepsake is built with `vite.standalone.config.js` // (see `npm run build`), which inlines everything into a single, file://-safe // index.html. This SvelteKit config is kept only for `npm run dev`/`preview`. export default defineConfig({ plugins: [tailwindcss(), sveltekit()] });