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({
|
2023-02-27 00:10:55 +01:00
|
|
|
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
|
|
|
});
|