mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import { siteUrlIssue } from "./site-url";
|
|
|
|
if (siteUrlIssue && process.env.NODE_ENV === "production") {
|
|
process.emitWarning(
|
|
`${siteUrlIssue}. Absolute site URLs will use http://localhost:3000.`,
|
|
{
|
|
code: "GEISTDOCS_SITE_URL_FALLBACK",
|
|
}
|
|
);
|
|
}
|