chore(tests): update test vite conf

This commit is contained in:
braks
2022-10-07 18:47:39 +02:00
committed by Braks
parent 8ee8996be9
commit c5291e7ab1

View File

@@ -1,5 +1,11 @@
import { defineConfig } from 'vite'
export default defineConfig({
base: '.',
server: {
fs: {
strict: false,
// Allow serving files from one level up to the project root
allow: ['..'],
},
},
})