blob: eeabcf6509cc1fb84d91f33ac0fef2a2c2409dca (
plain) (
tree)
|
|
import { sveltekit } from '@sveltejs/kit/vite';
import tailwindcss from '@tailwindcss/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [tailwindcss(), sveltekit()],
server: { fs: { allow: ['objects'] } },
test: { environment: 'jsdom' }
});
|