-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
53 lines (52 loc) · 1.47 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { defineConfig } from "vite";
import { resolve } from "node:path";
// import electron from 'vite-plugin-electron/simple'
import electron from "vite-plugin-electron";
import react from "@vitejs/plugin-react";
import jotaiDebugLabel from "jotai/babel/plugin-debug-label";
import jotaiReactRefresh from "jotai/babel/plugin-react-refresh";
// https://vitejs.dev/config/
export default defineConfig({
build: {
outDir: "dist",
emptyOutDir: true,
sourcemap: true,
target: "esnext",
minify: "esbuild",
rollupOptions: {
input: {
main: resolve(process.cwd(), "index.html"),
login: resolve(process.cwd(), "login.html"),
},
},
},
plugins: [
react({ babel: { plugins: [jotaiDebugLabel, jotaiReactRefresh] } }),
electron([
{
entry: "electron/main.ts",
},
{
entry: "electron/preload.ts",
onstart({ reload }) {
// Notify the Renderer process to reload the page when the Preload scripts build is complete,
// instead of restarting the entire Electron App.
reload();
},
},
{
entry: "electron/#_preload.ts",
onstart({ reload }) {
// Notify the Renderer process to reload the page when the Preload scripts build is complete,
// instead of restarting the entire Electron App.
reload();
},
},
]),
],
resolve: {
alias: {
"@": resolve(process.cwd(), "./src"),
},
},
});