mirror of
https://github.com/LukeHagar/sveltekit-electron.git
synced 2025-12-06 04:21:32 +00:00
14 lines
273 B
TypeScript
14 lines
273 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,
|
|
origin: 'http://localhost:3000'
|
|
}
|
|
});
|