Initial commit

This commit is contained in:
Niklas Korz 2025-03-20 19:35:00 +01:00
commit 8ed2c7d558
14 changed files with 494 additions and 0 deletions

7
vite.config.ts Normal file
View file

@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import deno from '@deno/vite-plugin'
// https://vite.dev/config/
export default defineConfig({
plugins: [deno()],
})