import { sveltekit } from '@sveltejs/kit/vite'; import tailwindcss from '@tailwindcss/vite'; import { defineConfig } from 'vitest/config'; export default defineConfig({ plugins: [tailwindcss(), sveltekit()], test: { // Unit tests only: `npm test` must never touch the real bucket. // Integration tests run via vitest.integration.config.ts. include: ['tests/unit/**/*.test.ts'], environment: 'node' } });