Skip to content

Commit 72c765e

Browse files
committed
Get rid of 'Website' prefix
1 parent 5025e69 commit 72c765e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

posts/2023-10-16-the-stack-part-3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1437,7 +1437,7 @@ export class Stack extends cdk.Stack {
14371437
super(scope, id, props);
14381438

14391439
// Set up our s3 website for ui-app.
1440-
new s3Website.Stack(this, "WebsiteUiApp", {
1440+
new s3Website.Stack(this, "UiApp", {
14411441
...props,
14421442
assets: "artifacts/ui-app",
14431443
index: "index.html",
@@ -1450,7 +1450,7 @@ export class Stack extends cdk.Stack {
14501450
});
14511451

14521452
// Set up our s3 website for ui-internal.
1453-
new s3Website.Stack(this, "WebsiteUiInternal", {
1453+
new s3Website.Stack(this, "UiInternal", {
14541454
...props,
14551455
assets: "artifacts/ui-internal",
14561456
index: "index.html",

0 commit comments

Comments
 (0)