generated from pantheon/chaos
17 lines
367 B
TypeScript
17 lines
367 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import { paraglide } from '@inlang/paraglide-sveltekit/vite';
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
sveltekit(),
|
|
paraglide({
|
|
project: './project.inlang',
|
|
outdir: './src/lib/paraglide',
|
|
}),
|
|
],
|
|
|
|
test: {
|
|
include: ['src/**/*.{test,spec}.{js,ts}'],
|
|
},
|
|
});
|