progress on client site

This commit is contained in:
Henry Dollman
2024-07-08 15:53:12 -04:00
parent 93e94bdec6
commit 89b06d00aa
35 changed files with 1312 additions and 12 deletions

12
site/vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import preact from '@preact/preset-vite'
import path from 'path'
export default defineConfig({
plugins: [preact()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})