From 72c765ef68057ca48e71d6a55d577e0bd063c14a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Kj=C3=A6r?= Date: Thu, 2 Nov 2023 22:38:29 +0100 Subject: [PATCH] Get rid of 'Website' prefix --- posts/2023-10-16-the-stack-part-3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/posts/2023-10-16-the-stack-part-3.md b/posts/2023-10-16-the-stack-part-3.md index 0266695..0fcfda0 100644 --- a/posts/2023-10-16-the-stack-part-3.md +++ b/posts/2023-10-16-the-stack-part-3.md @@ -1437,7 +1437,7 @@ export class Stack extends cdk.Stack { super(scope, id, props); // Set up our s3 website for ui-app. - new s3Website.Stack(this, "WebsiteUiApp", { + new s3Website.Stack(this, "UiApp", { ...props, assets: "artifacts/ui-app", index: "index.html", @@ -1450,7 +1450,7 @@ export class Stack extends cdk.Stack { }); // Set up our s3 website for ui-internal. - new s3Website.Stack(this, "WebsiteUiInternal", { + new s3Website.Stack(this, "UiInternal", { ...props, assets: "artifacts/ui-internal", index: "index.html",