Files
cloudron-box/filemanager/vite.config.js

14 lines
306 B
JavaScript
Raw Normal View History

2023-02-26 15:00:16 +01:00
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
2023-02-19 17:13:33 +01:00
// 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: ['..']
},
},
2023-02-26 15:00:16 +01:00
});