Files
ComfyBox/vite.config.ts
2023-04-04 15:10:09 -05:00

17 lines
374 B
TypeScript

import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
import FullReload from 'vite-plugin-full-reload'
export default defineConfig({
plugins: [
sveltekit(),
FullReload(["src/**/*.{js,ts,svelte}"])
],
server: {
port: 3000
},
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
});