agents-js-llama / vite.config.ts
nsarrazin's picture
nsarrazin HF staff
Duplicate from nsarrazin/agents-js-oasst
d61fb4a
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
},
server: {
fs: {
// Allow serving files from one level up to the project root
allow: ['..']
}
}
});