Madeirense
Madeirense

Reputation: 87

How to verify ownership on google of a react website hosted on Vercel

How do I verify a react.js website hosted on Vercel? On google Ownership verification page I've added a new property and was given an html file to upload to my server in order to verify my website but now is it just a matter of uploading the html file to the root of my project? And the head tag, where would I include it? enter image description here

Or is there another procedure for verifying react websites?

Upvotes: 0

Views: 960

Answers (1)

elopezp
elopezp

Reputation: 627

React is at the end a static Javascript in a html file better know as SPA(Single Page Application) so just put the tag <meta tag name="google-site-verification" ... > on index.html inside <head> tag in your public folder and that's it.

Upvotes: 0

Related Questions