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