Update vite config

This commit is contained in:
Alessio Davoli 2023-12-10 16:18:01 +01:00
parent 4f8e727bad
commit 48d51f8ffc

View file

@ -17,6 +17,12 @@ const config = {
precompress: false,
})
},
server: {
fs: {
// Allow serving files from one level up to the project root
allow: ['..'],
},
},
};
export default config;