setup electron app for production

This commit is contained in:
talksik
2026-04-13 10:03:23 -07:00
parent 1579de8c6d
commit 106254ef83
13 changed files with 96 additions and 21 deletions
+2
View File
@@ -2,6 +2,7 @@ import path from "path"
import tailwindcss from "@tailwindcss/vite"
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { defineEnv } from './vite.env';
// https://vitejs.dev/config
export default defineConfig({
@@ -11,4 +12,5 @@ export default defineConfig({
"@": path.resolve(__dirname, "./src"),
},
},
define: defineEnv,
});