14 lines
306 B
JavaScript
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: ['..']
|
|
},
|
|
},
|
|
});
|