mirror of
https://git.freecumextremist.com/grumbulon/pomme.git
synced 2024-10-31 23:50:34 +00:00
11 lines
215 B
JavaScript
11 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;
|