cdk-nextjs-standalone
Version:
Deploy a NextJS app to AWS using CDK and OpenNext.
34 lines (33 loc) • 621 B
TypeScript
/**
* OptionalNextjsBuildProps
*/
export interface OptionalNextjsBuildProps {
/**
* @stability stable
*/
readonly streaming?: boolean;
/**
* @stability stable
*/
readonly skipBuild?: boolean;
/**
* @stability stable
*/
readonly quiet?: boolean;
/**
* @stability stable
*/
readonly environment?: Record<string, string>;
/**
* @stability stable
*/
readonly buildPath?: string;
/**
* @stability stable
*/
readonly buildCommand?: string;
/**
* @stability stable
*/
readonly nextjsPath?: string;
}