Migrate app to Node Electron with modern React UI
Build and Release / build (push) Has been cancelled

This commit is contained in:
Sucukdeluxe
2026-02-27 03:25:56 +01:00
parent 56e4355d6b
commit b96ed1eb7a
35 changed files with 13180 additions and 119 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "node:path";
export default defineConfig({
plugins: [react()],
root: path.resolve(__dirname, "src/renderer"),
publicDir: path.resolve(__dirname, "assets"),
build: {
outDir: path.resolve(__dirname, "build/renderer"),
emptyOutDir: true
}
});