5 lines
169 B
TypeScript
5 lines
169 B
TypeScript
import type { AstroConfig } from 'astro';
|
|
|
|
export function isServerLikeOutput(config: AstroConfig) {
|
|
return config.output === 'server' || config.output === 'hybrid';
|
|
}
|