UNPKG

nuxt-site-config

Version:

Shared site configuration for Nuxt 3 modules.

8 lines (7 loc) 251 B
import { useSiteConfig } from "./useSiteConfig.js"; export function getSiteIndexable(e) { const { env, indexable } = useSiteConfig(e); if (typeof indexable !== "undefined") return String(indexable) === "true"; return env === "production"; }