mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-03 19:06:40 -04:00
update config
This commit is contained in:
@ -11,9 +11,12 @@ module.exports = {
|
|||||||
"Hi there! I'm a frontend web developer based in Boston, Massachusetts specializing in the JAMstack, modern JavaScript frameworks, and progressive web apps.",
|
"Hi there! I'm a frontend web developer based in Boston, Massachusetts specializing in the JAMstack, modern JavaScript frameworks, and progressive web apps.",
|
||||||
githubRepo: "jakejarvis/jarv.is",
|
githubRepo: "jakejarvis/jarv.is",
|
||||||
facebookAppId: "3357248167622283",
|
facebookAppId: "3357248167622283",
|
||||||
|
verifyGoogle: "qQhmLTwjNWYgQ7W42nSTq63xIrTch13X_11mmxBE9zk",
|
||||||
|
verifyBing: "164551986DA47F7F6FC0D21A93FFFCA6",
|
||||||
|
verifyFacebook: "q45jxbgyp22ef55xror1pvbehisg9m",
|
||||||
monetization: "$ilp.uphold.com/BJp6d2FrEB69",
|
monetization: "$ilp.uphold.com/BJp6d2FrEB69",
|
||||||
fathomSiteId: "WBGNQUKW",
|
fathomSiteId: "WBGNQUKW",
|
||||||
fathomCustomDomain: "https://blue-chilly.jarv.is",
|
fathomCustomScript: "https://blue-chilly.jarv.is/script.js",
|
||||||
webmentionId: "jarv.is",
|
webmentionId: "jarv.is",
|
||||||
|
|
||||||
// Me info
|
// Me info
|
||||||
|
@ -31,7 +31,7 @@ const App = ({ Component, pageProps }: AppProps) => {
|
|||||||
// https://vercel.com/guides/deploying-nextjs-using-fathom-analytics-with-vercel
|
// https://vercel.com/guides/deploying-nextjs-using-fathom-analytics-with-vercel
|
||||||
Fathom.load(config.fathomSiteId, {
|
Fathom.load(config.fathomSiteId, {
|
||||||
// optional custom domain: https://usefathom.com/docs/script/custom-domains
|
// optional custom domain: https://usefathom.com/docs/script/custom-domains
|
||||||
url: `${config.fathomCustomDomain || "https://cdn.usefathom.com"}/script.js`,
|
url: config.fathomCustomScript || "https://cdn.usefathom.com/script.js",
|
||||||
// don't track branch/deploy previews and localhost
|
// don't track branch/deploy previews and localhost
|
||||||
includedDomains: [config.siteDomain],
|
includedDomains: [config.siteDomain],
|
||||||
});
|
});
|
||||||
@ -150,15 +150,15 @@ const App = ({ Component, pageProps }: AppProps) => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "google-site-verification",
|
name: "google-site-verification",
|
||||||
content: "qQhmLTwjNWYgQ7W42nSTq63xIrTch13X_11mmxBE9zk",
|
content: config.verifyGoogle,
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "facebook-domain-verification",
|
|
||||||
content: "q45jxbgyp22ef55xror1pvbehisg9m",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "msvalidate.01",
|
name: "msvalidate.01",
|
||||||
content: "164551986DA47F7F6FC0D21A93FFFCA6",
|
content: config.verifyBing,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "facebook-domain-verification",
|
||||||
|
content: config.verifyFacebook,
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
// don't let search engines index branch/deploy previews
|
// don't let search engines index branch/deploy previews
|
||||||
|
Reference in New Issue
Block a user