mirror of
https://github.com/YuzuZensai/Discord-Presence-Relay.git
synced 2026-09-13 10:49:02 +00:00
16 lines
354 B
TypeScript
16 lines
354 B
TypeScript
import { defineConfig, externalizeDepsPlugin } from 'electron-vite'
|
|||
|
|
import tailwindcss from '@tailwindcss/vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
main: {
|
||
|
|
plugins: [externalizeDepsPlugin()]
|
||
|
|
},
|
||
|
|
preload: {
|
||
|
|
plugins: [externalizeDepsPlugin()]
|
||
|
|
},
|
||
|
|
renderer: {
|
||
|
|
plugins: [tailwindcss(), react()]
|
||
|
|
}
|
||
|
|
})
|