@aziontech/opennextjs-azion
Version:
Azion builder for Next.js apps
25 lines (24 loc) • 578 B
TypeScript
export type Arguments = ({
command: "build";
skipNextBuild: boolean;
minify: boolean;
assetsDir?: string;
} | {
command: "preview" | "deploy";
passthroughArgs: string[];
assetsDir?: string;
cacheDir?: string;
skipNextBuild: boolean;
bundlerVersion?: string;
} | {
command: "populateCache";
assetsDir?: string;
cacheDir?: string;
} | {
command: "populateAssets";
assetsDir?: string;
}) & {
outputDir?: string;
};
export declare function getArgs(): Arguments;
export declare function getPassthroughArgs(): string[];