src/utils/choices.ts (view raw)
1 2 3 4 5 6 7 8
import config from "@/config"; export function getProjectChoices() { return Object.entries(config.projects).map(([key, project]) => ({ name: project.displayName, value: key, })); }