Initial commit with style

This commit is contained in:
Mike Conrad
2024-07-24 17:15:36 -04:00
commit 34613c3b2e
15 changed files with 1387 additions and 0 deletions

7
vite.config.ts Normal file
View File

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