Inital commit

This commit is contained in:
2026-06-29 09:40:34 +02:00
commit 3ee804a543
68 changed files with 10924 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from "vite";
import pkg from "./package.json";
import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
define: {
__APP_VERSION__: JSON.stringify(pkg.version),
__AUTHOR__: JSON.stringify(pkg.author)
}
});