mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-07-21 20:55:56 -04:00
re-add fathom
couldn't sleep at night even with a few days of google analytics...
This commit is contained in:
+3
-2
@@ -1,15 +1,16 @@
|
||||
// Site info
|
||||
export const siteName = "Jake Jarvis";
|
||||
export const siteDomain = "https://jarv.is";
|
||||
export const siteDomain = "jarv.is";
|
||||
export const shortDescription = "Front-End Web Developer in Boston, MA 👨💻";
|
||||
export const longDescription =
|
||||
"Hi there! I'm a frontend web developer based in Boston, Massachusetts specializing in the JAMstack, modern JavaScript frameworks, and progressive web apps.";
|
||||
export const githubRepo = "jakejarvis/jarv.is";
|
||||
export const fathomSiteId = "WBGNQUKW";
|
||||
|
||||
let baseURL = ""; // default to relative URLs
|
||||
if (process.env.NEXT_PUBLIC_VERCEL_ENV === "production") {
|
||||
// vercel production (set manually above)
|
||||
baseURL = siteDomain;
|
||||
baseURL = `https://${siteDomain}`;
|
||||
} else if (process.env.NEXT_PUBLIC_VERCEL_URL) {
|
||||
// vercel deploy previews
|
||||
baseURL = `https://${process.env.NEXT_PUBLIC_VERCEL_URL}`;
|
||||
|
||||
Reference in New Issue
Block a user