Files
play/app/app.config.ts
2025-08-17 22:07:37 +08:00

61 lines
867 B
TypeScript

export default defineAppConfig({
app: {
name: "Video Player",
author: "Your Name",
version: "1.0.0",
description: "Desktop video player with remote control"
},
player: {
defaultVolume: 50,
autoFullscreen: true,
showControls: false,
webSocketPort: 6666,
reconnectInterval: 5000
},
ui: {
colors: {
primary: "green",
neutral: "zinc"
},
button: {
slots: {
base: "cursor-pointer"
}
},
formField: {
slots: {
root: "w-full"
}
},
input: {
slots: {
root: "w-full"
}
},
textarea: {
slots: {
root: "w-full",
base: "resize-none"
}
},
accordion: {
slots: {
trigger: "cursor-pointer",
item: "md:py-2"
}
},
navigationMenu: {
slots: {
link: "cursor-pointer"
},
variants: {
disabled: {
true: {
link: "cursor-text"
}
}
}
}
}
});