mirror of
https://github.com/LukeHagar/sveltekit-electron.git
synced 2025-12-09 20:57:44 +00:00
13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
test: {
|
|
include: ['src/**/*.{test,spec}.{js,ts}']
|
|
},
|
|
server: {
|
|
port: 3000
|
|
}
|
|
});
|