Skip to content

Instantly share code, notes, and snippets.

@kukielp
Created June 9, 2020 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kukielp/6debe7ce31d6358a38044a59414cec2a to your computer and use it in GitHub Desktop.
Save kukielp/6debe7ce31d6358a38044a59414cec2a to your computer and use it in GitHub Desktop.
// Static Code into Bucket.
const deployment = new s3Deployment.BucketDeployment(
this,
'deployStaticWebsite',
{
sources: [s3Deployment.Source.asset('./program/static')],
destinationBucket: publicAssets,
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment