Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import type { AstroConfig } from 'astro';
export function isHybridOutput(config: AstroConfig) {
return config.experimental.hybridOutput && config.output === 'hybrid';
}