Skeleton for a yaml config.

This commit is contained in:
2023-08-11 09:51:33 +02:00
parent 052f3b71bf
commit 931783245c
8 changed files with 117 additions and 6 deletions

View File

@@ -1,8 +1,9 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
import ViteYaml from '@modyfi/vite-plugin-yaml';
export default defineConfig({
plugins: [sveltekit()],
plugins: [ViteYaml(), sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}