manifest.ts 654 B

123456789101112131415161718192021222324
  1. import type { MetadataRoute } from "next";
  2. export default function manifest(): MetadataRoute.Manifest {
  3. return {
  4. name: "BCWin777",
  5. description: "BCWin777 The home of over 30 million players",
  6. start_url: "/",
  7. display: "standalone",
  8. background_color: "#ffffff",
  9. theme_color: "#000000",
  10. icons: [
  11. {
  12. src: "/icon-192x192.png",
  13. sizes: "192x192",
  14. type: "image/png",
  15. },
  16. {
  17. src: "/icon-512x512.png",
  18. sizes: "512x512",
  19. type: "image/png",
  20. },
  21. ],
  22. };
  23. }