Initial Commit
Some checks failed
Docker / build (push) Failing after 5s

This commit is contained in:
Tobias Brummer 2025-05-18 23:51:19 +02:00
commit 75f4febcf9
No known key found for this signature in database
45 changed files with 9206 additions and 0 deletions

22
vite.config.js Normal file
View file

@ -0,0 +1,22 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
import { join } from "path";
const srcRoot = join(__dirname, "src/vite");
export default defineConfig({
root: srcRoot,
base: "./",
plugins: [react()],
build: {
outDir: join(srcRoot, "../../dist"),
emptyOutDir: true,
},
server: {
host: true,
port: 8080,
},
optimizeDeps: {
exclude: ["path"],
},
});