mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-05 20:15:31 -04:00
5a1636baa3
- Replace Biome with oxlint + oxfmt (OXC toolchain) for linting and formatting - Add .oxlintrc.json and .oxfmtrc.json configuration files - Update VS Code settings and devcontainer to use oxc-vscode extension - Remove contact form, Resend email integration, and related server action/schema - Remove unused UI components (accordion, alert, card, tabs, toggle, etc.)
26 lines
571 B
TypeScript
26 lines
571 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
import siteConfig from "@/lib/config/site";
|
|
|
|
const manifest = (): MetadataRoute.Manifest => {
|
|
return {
|
|
name: siteConfig.name,
|
|
// eslint-disable-next-line camelcase
|
|
short_name: siteConfig.name,
|
|
description: siteConfig.description,
|
|
lang: process.env.NEXT_PUBLIC_SITE_LOCALE,
|
|
icons: [
|
|
{
|
|
src: "/icon.png",
|
|
sizes: "any",
|
|
type: "image/png",
|
|
},
|
|
],
|
|
display: "browser",
|
|
// eslint-disable-next-line camelcase
|
|
start_url: "/",
|
|
};
|
|
};
|
|
|
|
export default manifest;
|