21 lines
722 B
TypeScript
21 lines
722 B
TypeScript
import type { MetadataRoute } from "next";
|
|
import { getPublicBranding } from "@/server/branding/runtime";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
const branding = getPublicBranding();
|
|
return {
|
|
name: branding.organizationName ?? branding.applicationName,
|
|
short_name: branding.shortName,
|
|
description: "Self-hosted freelancer operating dashboard",
|
|
start_url: "/",
|
|
display: "standalone",
|
|
background_color: "#FFFFFF",
|
|
theme_color: branding.primaryColor,
|
|
icons: branding.iconUrl
|
|
? [{ src: branding.iconUrl, sizes: "any", type: "image/png" }]
|
|
: [{ src: "/logo/iconLogo.png", sizes: "any", type: "image/png" }],
|
|
};
|
|
}
|