Initial commit: dotzhauer v4 heimat + Dockerfile/nginx for Coolify

This commit is contained in:
2026-06-03 12:18:42 +02:00
committed by Ihor_Zhekov
commit e8f0da9187
21 changed files with 3347 additions and 0 deletions

8
vite.config.js Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: { port: 8083, strictPort: true, host: true, open: false },
preview: { port: 8083, strictPort: true },
});