Theme elements

This commit is contained in:
2022-04-18 22:44:24 +02:00
parent 5f4ccfa716
commit e94cb3115e
5 changed files with 32 additions and 11 deletions

10
vite.config.js Normal file
View File

@@ -0,0 +1,10 @@
// vite.config.js
const {defineConfig} = require('vite');
export default defineConfig({
server: {
fs: {
// Allow serving files from one level up to the project root
strict: false
}
}
})