cdk-nextjs
Version:
Deploy Next.js apps on AWS with CDK
27 lines (26 loc) • 552 B
TypeScript
import type { BuilderImageProps, NextjsType } from '../';
/**
* OptionalNextjsBuildProps
*/
export interface OptionalNextjsBuildProps {
/**
* @stability stable
*/
readonly relativePathToPackage?: string;
/**
* @stability stable
*/
readonly builderImageProps?: BuilderImageProps;
/**
* @stability stable
*/
readonly buildCommand?: string;
/**
* @stability stable
*/
readonly nextjsType?: NextjsType;
/**
* @stability stable
*/
readonly buildContext?: string;
}