e53ef0a193
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
const config = {
|
|
plugins: [sveltekit()],
|
|
test: {
|
|
include: ['src/**/*.{test,spec}.{js,ts}']
|
|
}
|
|
};
|
|
|
|
export default config;
|