playground/vite.config.ts

13 lines
269 B
TypeScript

import { sveltekit } from '@sveltejs/kit/vite'
import { defineConfig } from 'vitest/config'
export default defineConfig({
plugins: [sveltekit()],
ssr: {
noExternal: ['three', 'three-inspect']
},
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
})