constructor()

in packages/infra/lib/infra-stack.ts [12:21]


    constructor(scope: Construct, id: string, props?: StackProps) {
        super(scope, id, props);

        const apiConstruct = new WebsiteApiConstruct(this, 'WebsiteAPIConstruct');

        new WebsiteConstruct(this, 'WebsiteConstruct', {
            websiteDistPath: WEBSITE_DIST_PATH,
            api: apiConstruct.api,
        });
    }