You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I like to get the config written first as that will drive the design. What are your thoughts on:
export default function () {
return [
{
type: "build" // maps to a registered type BuildDeployTask
},
{
name: "upload-html", // used to read output data
comment: "Upload index.html to S3", // logged to console
type: "s3/upload", // maps to a registered type S3/UploadDeployTask
glob: "*.html",
headers: ['Content-Type:text/html']
},
{
comment: "Configure Cloudfront",
type: "cloudfront/update-distribution",
origin: get("upload-html.bucketname") // get data from output POJO of previous task
}
]
}
The text was updated successfully, but these errors were encountered:
I like to get the config written first as that will drive the design. What are your thoughts on:
The text was updated successfully, but these errors were encountered: