Was there an option added to SST for the static si...
# help
j
Was there an option added to SST for the static site to deploy faster (like skip CloudFront invalidation) for working locally? If so, how do I use it?
f
Hey @Jon Holman, if you update to the latest SST version, you can set the waitForInvalidation option to
false
. For example:
Copy code
new ReactStaticSite(this, "Site", {
  path: "path/to/src",
  waitForInvalidation: false,
});
j
Thanks!