initial commit

This commit is contained in:
Simeon Radivoev 2026-01-23 04:56:39 +02:00
commit 3e90445fab
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
20 changed files with 961 additions and 0 deletions

23
electrobun.config.ts Normal file
View file

@ -0,0 +1,23 @@
export default {
app: {
name: "gameflow-deck",
identifier: "simeonradivoev.gameflow-deck.app",
version: "0.0.1",
},
build: {
// Vite builds to dist/, we copy from there
copy: {
"dist/index.html": "views/mainview/index.html",
"dist/assets": "views/mainview/assets",
},
mac: {
bundleCEF: false,
},
linux: {
bundleCEF: false,
},
win: {
bundleCEF: false,
},
},
};