We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3028e6 commit 220134fCopy full SHA for 220134f
apps/web/src/app/icon.svg
apps/web/src/app/manifest.ts
@@ -0,0 +1,23 @@
1
+import type { MetadataRoute } from "next";
2
+
3
+export default function manifest(): MetadataRoute.Manifest {
4
+ return {
5
+ name: "Stardust",
6
+ short_name: "Stardust",
7
+ description: "Stardust is the platform for streaming isolated desktop containers.",
8
+ start_url: "/",
9
+ display: "standalone",
10
+ background_color: "#1e1e2e",
11
+ theme_color: "#cba6f7",
12
+ icons: [
13
+ {
14
+ src: "/icon.svg",
15
+ sizes: "192x192",
16
+ },
17
18
19
+ sizes: "512x512",
20
21
+ ],
22
+ };
23
+}
0 commit comments