Skip to content

Commit 64b3ec6

Browse files
authored
chore: additional GWT site verification (bootstrap-vue#5227)
1 parent b5f44bc commit 64b3ec6

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

docs/constants.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ export const GWT_JS_ORG = 'H9Mn7ie5Z5KJSjRfsn9nilLn5kFgn7BMEqL_sUhVpzg'
1313
// *.bootstrap-vue.org
1414
// <meta name="google-site-verification" content="5E0vyG9CXTfY7McIt2aQppkNA6FQ3b0JJRZzhQ16HW4" />
1515
export const GWT_BV_ORG = '5E0vyG9CXTfY7McIt2aQppkNA6FQ3b0JJRZzhQ16HW4'
16+
// bootstrap-vue.netlify.app (legacy dev site)
17+
// <meta name="google-site-verification" content="Ba1MOy9bRa-r-8eLhSTEkayGbGrT3HhbNuqNiY60uzo" />
18+
export const GWT_BV_NETLIFY = 'Ba1MOy9bRa-r-8eLhSTEkayGbGrT3HhbNuqNiY60uzo'

docs/layouts/default.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BASE_URL, GWT_BV_ORG, GWT_JS_ORG } from '~/constants'
1+
import { BASE_URL, GWT_BV_ORG, GWT_JS_ORG, GWT_BV_NETLIFY } from '~/constants'
22
import Footer from '~/components/footer'
33
import Header from '~/components/header'
44

@@ -25,11 +25,17 @@ export default {
2525
name: 'google-site-verification',
2626
content: GWT_BV_ORG
2727
},
28-
// Add GWT site verification for bootstrap-vue.js.org
28+
// Add GWT site verification for bootstrap-vue.js.org (legacy)
2929
{
3030
hid: 'google-site-verification-js-org',
3131
name: 'google-site-verification',
3232
content: GWT_JS_ORG
33+
},
34+
// Add GWT site verification for bootstrap-vue.netlify.app (legacy)
35+
{
36+
hid: 'google-site-verification-netlify',
37+
name: 'google-site-verification',
38+
content: GWT_BV_NETLIFY
3339
}
3440
]
3541
}

0 commit comments

Comments
 (0)