> :loudspeaker: Update *`sst.StaticSite`:* In v...
# general
f
📢 Update
`sst.StaticSite`: In v0.25.1, you can build and deploy a static website (ie. SPA) like this:
Copy code
new sst.StaticSite(this, "MyReactSite", {
  path: "website",
  buildCommand: "npm run build",
  buildOutput: "build",
  customDomain: "<http://example.com|example.com>",
});
More examples here https://docs.serverless-stack.com/constructs/StaticSite#examples
r
Looks great, I assume Vue just follows the same example as React?
f
Just added a Vue example. Yeah very similar.
r
wow, that was fast!