mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 07:05:21 -04:00
23 lines
460 B
TypeScript
23 lines
460 B
TypeScript
import config from "../lib/config";
|
|
import type { MetadataRoute } from "next";
|
|
|
|
const manifest = (): MetadataRoute.Manifest => {
|
|
return {
|
|
name: config.siteName,
|
|
short_name: config.siteName,
|
|
description: config.longDescription,
|
|
lang: config.siteLocale,
|
|
icons: [
|
|
{
|
|
src: "/icon.png",
|
|
sizes: "any",
|
|
type: "image/png",
|
|
},
|
|
],
|
|
display: "browser",
|
|
start_url: "/",
|
|
};
|
|
};
|
|
|
|
export default manifest;
|