Files
vue-flow/e2e/vite.config.ts
2022-10-08 23:25:34 +02:00

14 lines
299 B
TypeScript

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