init: 初始化

This commit is contained in:
电摇小子
2025-12-15 16:01:25 +08:00
commit a967e17679
42 changed files with 7400 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { resolve } from 'path'
import { defineConfig } from 'electron-vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
main: {},
preload: {},
renderer: {
resolve: {
alias: {
'@renderer': resolve('src/renderer/src')
}
},
plugins: [react()]
}
})