refactor: restructure application components and update routing

This commit is contained in:
2026-03-18 14:54:01 +01:00
parent 6952d5cfe1
commit 1d08d197dc
8 changed files with 71 additions and 55 deletions

View File

@@ -1,10 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { resolve } from 'path';
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
build: {
outDir: 'dist'
}
},
resolve: {
alias: {
'@': resolve(__dirname, './src'),
},
},
})