Files
cloudron-box/filemanager/vite.config.js
2023-04-16 18:08:10 +02:00

14 lines
306 B
JavaScript

import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
fs: {
// Allow serving files from one level up to the project root for monaco editor assets
allow: ['..']
},
},
});