14 lines
257 B
TypeScript
14 lines
257 B
TypeScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
build: {
|
||
|
|
lib: {
|
||
|
|
entry: 'electron/main.ts',
|
||
|
|
formats: ['cjs'],
|
||
|
|
},
|
||
|
|
rollupOptions: {
|
||
|
|
external: ['electron'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|