Intial commit.

This commit is contained in:
Cameron Redmore 2025-08-07 23:35:10 +01:00
commit 349d0ad4ff
No known key found for this signature in database
11 changed files with 1676 additions and 0 deletions

16
vite.config.js Normal file
View file

@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
import Icons from 'unplugin-icons/vite'
export default defineConfig({
plugins: [
tailwindcss(),
Icons({
compiler: 'web-components',
webComponents: {
autoDefine: true,
},
})
],
})