mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-06 21:42:24 +02:00
9 lines
197 B
TypeScript
9 lines
197 B
TypeScript
|
|
|
|
export function publicUrl() {
|
|
if (process.env.NEXT_PUBLIC_VERCEL_ENV === "production") {
|
|
return `https://frontmatter.codes`;
|
|
} else {
|
|
return `https://${process.env.VERCEL_URL}`;
|
|
}
|
|
} |