18 lines
314 B
TypeScript
18 lines
314 B
TypeScript
import type { ElectrobunConfig } from 'electrobun'
|
|
|
|
export default {
|
|
app: {
|
|
name: 'Desktop',
|
|
identifier: 'com.furtherverse.desktop',
|
|
version: '1.0.0',
|
|
},
|
|
build: {
|
|
bun: {
|
|
entrypoint: 'src/bun/index.ts',
|
|
},
|
|
linux: {
|
|
bundleCEF: true,
|
|
},
|
|
},
|
|
} satisfies ElectrobunConfig
|