Skip to content

Commit 49d6ef6

Browse files
committed
fix(skeleton): increase bucket deployment memory limit to 1024mb
1 parent 0099587 commit 49d6ef6

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

skeleton/cdk/src/app-stack.ts.liquid

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ export class AppStack extends Stack {
119119
exclude: mutableFiles,
120120
cacheControl: [CacheControl.fromString("max-age=31536000,public,immutable")],
121121
sources: [source],
122+
memoryLimit: 1024,
122123
});
123124

124125
new BucketDeployment(this, "HtmlBucketDeployment", {
@@ -130,6 +131,7 @@ export class AppStack extends Stack {
130131
include: mutableFiles,
131132
cacheControl: [CacheControl.fromString("max-age=0,no-cache,no-store,must-revalidate")],
132133
sources: [source],
134+
memoryLimit: 1024,
133135
});
134136
}
135137
}

0 commit comments

Comments
 (0)