1
0

Initial commit

This commit is contained in:
2026-01-03 15:58:49 +01:00
commit 1ef8cfbb80
17 changed files with 8063 additions and 0 deletions

14
vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite';
import preact from '@preact/preset-vite';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
preact({
prerender: {
enabled: true,
renderTarget: '#app',
},
}),
],
});