File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import "../globals.css" ;
22
3+ import type { Metadata } from "next" ;
34import { Inter } from "next/font/google" ;
5+ import { metadata as studioMetadata , viewport } from "next-sanity/studio" ;
46
57const inter = Inter ( {
68 variable : "--font-inter" ,
79 subsets : [ "latin" ] ,
810 display : "swap" ,
911} ) ;
1012
11- export { metadata , viewport } from "next-sanity/studio" ;
13+ export { viewport } ;
14+
15+ export const metadata : Metadata = {
16+ ...studioMetadata ,
17+ icons : {
18+ icon : "/sanity-icons/icon.ico" ,
19+ apple : "/sanity-icons/apple-icon.png" ,
20+ } ,
21+ } ;
1222
1323export default function RootLayout ( {
1424 children,
Original file line number Diff line number Diff line change 22 "private" : true ,
33 "scripts" : {
44 "dev" : " next dev --turbo" ,
5- "build" : " next build --webpack " ,
5+ "build" : " next build" ,
66 "start" : " next start" ,
77 "lint" : " biome check ." ,
88 "predev" : " npm run typegen" ,
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments