feat(frontend): general revamp of navigation & pages (#303)

This commit is contained in:
Julian Tölle 2023-09-30 19:44:21 +02:00 committed by GitHub
parent f08633587d
commit 4b1dd10846
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 3059 additions and 659 deletions

View file

@ -1,3 +1,4 @@
import path from "path";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
@ -7,6 +8,11 @@ export default defineConfig(() => {
outDir: "build",
},
plugins: [react()],
resolve: {
alias: {
src: path.resolve(__dirname, "./src"),
},
},
test: {
globals: true,
environment: "jsdom",