Skip to content

Commit a1216b9

Browse files
committed
feat: 네이버 사이트 검증 메타 태그 추가
1 parent f2c0bcc commit a1216b9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.vitepress/config.mts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { generateSidebar } from "./plugins/sidebar";
44
import { createAutoGeneratePostsPlugin } from "./plugins/posts";
55

66
const GOOGLE_ANALYTICS_ID = "G-3XM039P5E6";
7+
const NAVER_SITE_VERIFICATION_CODE = "596cb41268d676e378deaba826716cd18229d0b1";
78

89
// https://vitepress.dev/reference/site-config
910
export default defineConfig({
@@ -78,5 +79,12 @@ export default defineConfig({
7879
gtag('config', '${GOOGLE_ANALYTICS_ID}');
7980
`,
8081
],
82+
[
83+
"meta",
84+
{
85+
name: "naver-site-verification",
86+
content: NAVER_SITE_VERIFICATION_CODE,
87+
},
88+
],
8189
],
8290
});

0 commit comments

Comments
 (0)