google site verification

This commit is contained in:
saml33 2023-11-16 11:14:32 +11:00
parent 040d97197d
commit bec2d1a0e3
3 changed files with 13 additions and 1 deletions

3
.gitignore vendored
View File

@ -5,6 +5,9 @@
/.pnp
.pnp.js
# pages
/pages/google-verification.html
# testing
/coverage

View File

@ -0,0 +1,9 @@
export default class extends React.Component {
static async getInitialProps({ res }) {
res.setHeader('Content-Type', 'text/html')
res.write(
'<html><body>google-site-verification: google1c604c9025f210a7.html</body></html>'
)
res.end()
}
}

File diff suppressed because one or more lines are too long