function isServerLikeOutput(config) { return config.output === "server" || config.output === "hybrid"; } function getPrerenderDefault(config) { return config.output === "hybrid"; } export { getPrerenderDefault, isServerLikeOutput };