export type ThemeName = 'capella' | 'carina' | 'fulu' | 'gar' | 'pegasus' | 'rigel' | 'sirius' | 'talitha'; /** * An object mapping sites by hostname to the themes they should render. * * This is to avoid having to fetch site data in middleware, which bypasses caching. * Both the live and *.agent.homeflow.co.uk domain for new sites will need to be added to this object. * In future we aim to access Mongo from middleware to retrieve the theme name when it is supported. * * Note that Rigel is the default theme that will be rendered if no match is found, but Rigel sites * should still be added here for clarity, or in case the default changes. * */ export declare const siteThemes: { [host: string]: ThemeName; }; export default siteThemes; //# sourceMappingURL=site-themes.d.ts.map