8 lines
241 B
JavaScript
Raw Permalink Normal View History

2025-09-05 14:59:21 +08:00
import { useSiteConfig } from "#imports";
export function getSiteIndexable(e) {
const { env, indexable } = useSiteConfig(e);
if (typeof indexable !== "undefined")
return String(indexable) === "true";
return env === "production";
}