File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed
Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change 1- import { BASE_URL } from '~/constants'
1+ import { BASE_URL , GWT_BV_ORG , GWT_JS_ORG } from '~/constants'
22import BVBreadcrumbs from '~/components/breadcrumbs'
33import BVFeedback from '~/components/feedback'
44import BVFooter from '~/components/footer'
@@ -76,15 +76,29 @@ export default {
7676 return h ( 'div' , [ $header , $container , $footer ] )
7777 } ,
7878 head ( ) {
79- // Add canonical URL so all site variations are
80- // indexed to the same primary URL
8179 return {
8280 link : [
81+ // Add canonical URL so all site variations are
82+ // indexed to the same primary URL
8383 {
8484 hid : 'canonical' ,
8585 rel : 'canonical' ,
8686 href : `${ BASE_URL } ${ this . $route . path } `
8787 }
88+ ] ,
89+ meta : [
90+ // Add GWT site verification for *.bootstrap-vue.org
91+ {
92+ hid : 'google-site-verification-bv-org' ,
93+ name : 'google-site-verification' ,
94+ content : GWT_BV_ORG
95+ } ,
96+ // Add GWT site verification for bootstrap-vue.js.org
97+ {
98+ hid : 'google-site-verification-js-org' ,
99+ name : 'google-site-verification' ,
100+ content : GWT_JS_ORG
101+ }
88102 ]
89103 }
90104 }
You can’t perform that action at this time.
0 commit comments