open-next-cdk
Version:
Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK
12 lines (11 loc) • 326 B
TypeScript
import { LayerVersion } from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
export interface NextjsLayerProps {
}
/**
* Lambda layer for Next.js.
* Contains Sharp 0.30.0.
*/
export declare class NextjsLayer extends LayerVersion {
constructor(scope: Construct, id: string, props: NextjsLayerProps);
}