forked from cawa-93/vite-electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexternal-packages.config.js
60 lines (57 loc) · 1.08 KB
/
external-packages.config.js
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
/**
By default, vite optimizes and packs all the necessary dependencies into your bundle,
so there is no need to supply them in your application as a node module.
Unfortunately, vite cannot optimize any dependencies:
Some that are designed for a node environment may not work correctly after optimization.
Therefore, such dependencies should be marked as "external":
they will not be optimized, will not be included in your bundle, and will be delivered as a separate node module.
*/
export const external = [
'electron',
'electron-updater',
]
export const builtins = [
'assert',
'async_hooks',
'buffer',
'child_process',
'cluster',
'console',
'constants',
'crypto',
'dgram',
'dns',
'domain',
'events',
'fs',
'fs/promises',
'http',
'http2',
'https',
'inspector',
'module',
'net',
'os',
'path',
'perf_hooks',
'process',
'punycode',
'querystring',
'readline',
'repl',
'stream',
'string_decoder',
'timers',
'tls',
'trace_events',
'tty',
'url',
'util',
'v8',
'vm',
'zlib',
]
export default [
...builtins,
...external,
]