Initial commit: Electron video/audio calling client
This commit is contained in:
commit
9eb33512f4
22 changed files with 8848 additions and 0 deletions
20
electron.vite.config.ts
Normal file
20
electron.vite.config.ts
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import { resolve } from 'path'
|
||||
import { defineConfig, externalizeDepsPlugin } from 'electron-vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
|
||||
export default defineConfig({
|
||||
main: {
|
||||
plugins: [externalizeDepsPlugin()]
|
||||
},
|
||||
preload: {
|
||||
plugins: [externalizeDepsPlugin()]
|
||||
},
|
||||
renderer: {
|
||||
resolve: {
|
||||
alias: {
|
||||
'@renderer': resolve('src/renderer/src')
|
||||
}
|
||||
},
|
||||
plugins: [react()]
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue