Skip to content

Instantly share code, notes, and snippets.

View htmnk's full-sized avatar
🎯
Focusing

Erik Petrinec htmnk

🎯
Focusing
View GitHub Profile
@htmnk
htmnk / SiteBucketDeployment.ts
Last active December 12, 2022 19:29
Caching Site Contents with AWS CDK & S3
import { join } from 'path'
import type { Construct } from 'constructs'
import * as s3deploy from 'aws-cdk-lib/aws-s3-deployment'
type CacheControlMaxAge = '0' | '31536000'
type SiteBucketDeploymentProps = Omit<s3deploy.BucketDeploymentProps, 'sources'> & {
sitePaths: string[]
longCacheFileExtensions: string[]
}
type CachedBucketDeploymentProps = SiteBucketDeploymentProps & { maxAge: CacheControlMaxAge }