We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8592f6d commit 9cd0abfCopy full SHA for 9cd0abf
1 file changed
src/app/layout.tsx
@@ -1,4 +1,4 @@
1
-import type { Metadata } from "next";
+import type { Metadata, Viewport } from "next";
2
import { Inter } from "next/font/google";
3
import "./globals.css";
4
import Script from "next/script";
@@ -14,7 +14,6 @@ export const metadata: Metadata = {
14
apple: "/icon-192.png",
15
},
16
manifest: "/manifest.json",
17
- themeColor: "#2563eb",
18
appleWebApp: {
19
capable: true,
20
statusBarStyle: "default",
@@ -25,6 +24,10 @@ export const metadata: Metadata = {
25
24
26
};
27
+export const viewport: Viewport = {
28
+ themeColor: "#2563eb",
29
+};
30
+
31
import DisableDevTools from "@/components/common/DisableDevTools";
32
import { UndoProvider } from "@/context/UndoContext";
33
import { ThemeProvider } from "@/context/ThemeContext";
0 commit comments