File tree Expand file tree Collapse file tree 4 files changed +19
-1
lines changed Expand file tree Collapse file tree 4 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1616
1717# production
1818/build
19+ /public /robots.txt
20+ /public /sitemap * .xml
1921
2022# misc
2123.DS_Store
Original file line number Diff line number Diff line change 11import './globals.css' ;
22
3+ import { Metadata } from 'next' ;
34import { Nanum_Myeongjo } from 'next/font/google' ;
45import localFont from 'next/font/local' ;
56
@@ -16,6 +17,12 @@ const pretendard = localFont({
1617 variable : '--font-mono' ,
1718} ) ;
1819
20+ export const metadata : Metadata = {
21+ other : {
22+ [ 'google-site-verification' ] : '1tOVlPGznTkcAVpMjZVMHwrVgJrkxd9IPKcfLHd0LWc' ,
23+ } ,
24+ } ;
25+
1926export default function RootLayout ( {
2027 children,
2128} : Readonly < {
Original file line number Diff line number Diff line change 1+ /** @type {import('next-sitemap').IConfig } */
2+
3+ module . exports = {
4+ siteUrl : 'https://yuhwan-park.github.io/' ,
5+ changefreq : 'daily' ,
6+ priority : 1 ,
7+ sitemapSize : 5000 ,
8+ generateRobotsTxt : true ,
9+ } ;
Original file line number Diff line number Diff line change 44 "private" : true ,
55 "scripts" : {
66 "dev" : " next build && next dev --turbo" ,
7- "build" : " next build" ,
7+ "build" : " next-sitemap && next build" ,
88 "start" : " next start" ,
99 "lint" : " next lint"
1010 },
You can’t perform that action at this time.
0 commit comments