astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
16 lines (15 loc) • 392 B
JavaScript
import { getOutDirWithinCwd } from "../core/build/common.js";
function getPrerenderDefault(config) {
return config.output !== "server";
}
function getOutputDirectory(settings) {
if (settings.buildOutput === "server") {
return settings.config.build.server;
} else {
return getOutDirWithinCwd(settings.config.outDir);
}
}
export {
getOutputDirectory,
getPrerenderDefault
};