mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
test: {
|
|
include: ['src/**/*.{test,spec}.{js,ts}']
|
|
}
|
|
});
|