Files
cloudron-box/vite.config.js
2023-02-27 00:10:55 +01: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: ['..']
},
},
});