1
0

feat: 初始框架

This commit is contained in:
2025-06-10 15:02:21 +08:00
parent 0e042546f6
commit f8fa295513
18 changed files with 4624 additions and 0 deletions

13
electron.vite.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
import {
defineConfig, externalizeDepsPlugin,
} from 'electron-vite';
export default defineConfig({
main: {
plugins: [externalizeDepsPlugin()],
},
preload: {
plugins: [externalizeDepsPlugin()],
},
renderer: {},
});