Skip to content

Commit

Permalink
Get rid of 'Website' prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tehnix committed Nov 2, 2023
1 parent 5025e69 commit 72c765e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions posts/2023-10-16-the-stack-part-3.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 72c765e

Please sign in to comment.