Files
vue-flow/e2e/vite.config.ts
T

12 lines
213 B
TypeScript

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