-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.mjs
53 lines (52 loc) · 1.06 KB
/
vite.config.mjs
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 i18nextLoader from 'vite-plugin-i18next-loader'
import react from '@vitejs/plugin-react';
import electron from 'vite-plugin-electron';
import { polyfillNode } from "esbuild-plugin-polyfill-node";
export default defineConfig({
base: './',
plugins: [
react(),
electron({
main: {
entry: 'public/electron.js',
base: './',
},
preload: {
input: 'public/preload.js',
base: './',
},
}),
i18nextLoader({
paths: ['./src/locales'],
namespaceResolution: 'basename'
})
],
server: {
port: 3001,
open: true,
},
optimizeDeps: {
esbuildOptions: {
define: {
global: "globalThis",
},
plugins: [
polyfillNode({
process: true,
assert: true,
buffer: true,
}),
],
},
},
resolve: {
alias: {
process: "process/browser",
assert: "assert",
stream: "stream-browserify",
util: "util",
},
extensions: ['.js', '.jsx', '.mjs']
},
});