mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
28 lines
697 B
TypeScript
28 lines
697 B
TypeScript
export const dynamic = "force-static";
|
|
import type { MetadataRoute } from "next";
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
name: "Better T Stack",
|
|
short_name: "Better T Stack",
|
|
description:
|
|
"A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
|
|
start_url: "/new",
|
|
display: "standalone",
|
|
background_color: "#ffffff",
|
|
theme_color: "#000000",
|
|
icons: [
|
|
{
|
|
src: "/favicon/web-app-manifest-192x192.png",
|
|
sizes: "192x192",
|
|
type: "image/png",
|
|
},
|
|
{
|
|
src: "/favicon/web-app-manifest-512x512.png",
|
|
sizes: "512x512",
|
|
type: "image/png",
|
|
},
|
|
],
|
|
};
|
|
}
|