-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathelectron.vite.config.ts
77 lines (73 loc) · 1.56 KB
/
electron.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/**
* Copyright (c) 2025 Bytedance, Inc. and its affiliates.
* SPDX-License-Identifier: Apache-2.0
*/
import { resolve } from 'node:path';
import react from '@vitejs/plugin-react';
import { defineConfig, externalizeDepsPlugin } from 'electron-vite';
import tsconfigPaths from 'vite-tsconfig-paths';
import pkg from './package.json';
// get all workspace:* deps
const workspaceDeps = [
...Object.entries(pkg.dependencies || {})
.filter(
([, version]) =>
typeof version === 'string' && version.startsWith('workspace:'),
)
.map(([name]) => name),
// extra esm only deps
'electron-store',
];
export default defineConfig({
main: {
build: {
outDir: 'dist/main',
lib: {
entry: './src/main/main.ts',
},
},
plugins: [
externalizeDepsPlugin({
exclude: workspaceDeps,
}),
tsconfigPaths(),
],
},
preload: {
build: {
outDir: 'dist/preload',
lib: {
entry: './src/preload/index.ts',
},
},
plugins: [
externalizeDepsPlugin({
exclude: workspaceDeps,
}),
tsconfigPaths(),
],
},
renderer: {
root: 'src/renderer',
build: {
outDir: 'dist/renderer',
rollupOptions: {
input: {
main: resolve('./src/renderer/index.html'),
},
},
minify: true,
},
css: {
preprocessorOptions: {
scss: {
api: 'modern',
},
},
},
plugins: [react(), tsconfigPaths()],
define: {
APP_VERSION: JSON.stringify(pkg.version),
},
},
});