27 lines
589 B
TypeScript
27 lines
589 B
TypeScript
/**
|
|
* Config for each linked site: route slug → URL and optional per-site options.
|
|
* Add site-specific options here (e.g. title, sandbox, allow) as needed.
|
|
*/
|
|
export const sites = {
|
|
prism: {
|
|
url: 'https://prism.ccllc.pro',
|
|
title: 'Prism'
|
|
},
|
|
tasgrid: {
|
|
url: 'https://tasgrid.ccllc.pro',
|
|
title: 'TasGrid'
|
|
},
|
|
stackq: {
|
|
url: 'https://stackq.ccllc.pro',
|
|
title: 'Stackq'
|
|
},
|
|
hrm: {
|
|
url: 'https://hrm.ccllc.pro',
|
|
title: 'HRM'
|
|
}
|
|
} as const;
|
|
|
|
export type SiteSlug = keyof typeof sites;
|
|
|
|
export const siteSlugs = Object.keys(sites) as SiteSlug[];
|