Basic UI updates

This commit is contained in:
Harivansh Rathi 2024-11-26 18:04:18 -05:00
parent 02e77a947c
commit bfc2e94ef4
14 changed files with 1187 additions and 243 deletions

View file

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