-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
53 lines (51 loc) · 1.19 KB
/
vite.config.ts
File metadata and controls
53 lines (51 loc) · 1.19 KB
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 electron from 'vite-plugin-electron';
import react from '@vitejs/plugin-react';
import path from 'path';
const alias = {
'@': path.resolve(__dirname, 'src')
};
export default defineConfig({
plugins: [
react(),
electron([
{
entry: 'src/main/index.ts',
onstart(options) { options.startup(); },
vite: {
resolve: { alias },
build: {
rollupOptions: {
external: ['better-sqlite3'],
output: {
entryFileNames: 'index.js',
chunkFileNames: '[name].js',
assetFileNames: '[name].[ext]'
}
}
}
}
},
{
entry: 'src/preload/index.ts',
onstart(options) { options.reload(); },
vite: {
resolve: { alias },
build: {
rollupOptions: {
output: {
entryFileNames: 'preload.js',
chunkFileNames: '[name].js',
assetFileNames: '[name].[ext]'
}
}
}
}
}
])
],
resolve: { alias },
build: {
outDir: 'dist/renderer'
}
});