1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 04:45:22 -04:00
jarv.is/app/manifest.ts
2025-04-11 14:50:15 -04:00

26 lines
594 B
TypeScript

import * as config from "../lib/config";
import { SITE_LOCALE } from "../lib/config/constants";
import type { MetadataRoute } from "next";
const manifest = (): MetadataRoute.Manifest => {
return {
name: config.siteName,
// eslint-disable-next-line camelcase
short_name: config.siteName,
description: config.description,
lang: SITE_LOCALE,
icons: [
{
src: "/icon.png",
sizes: "any",
type: "image/png",
},
],
display: "browser",
// eslint-disable-next-line camelcase
start_url: "/",
};
};
export default manifest;