chore: bootstrap HemHub web (Iteration 0)

This commit is contained in:
Urban Modig
2025-10-09 14:14:17 +02:00
commit 64787b0b0b
25 changed files with 3221 additions and 0 deletions

14
vite.config.ts Normal file
View File

@ -0,0 +1,14 @@
// vite.config.ts
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tsconfigPaths from 'vite-tsconfig-paths'
import { fileURLToPath, URL } from 'node:url'
export default defineConfig({
plugins: [react(), tsconfigPaths()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
})