www/src/content/docs/blog/remixsite-construct.mdx
import { YouTube } from '@astro-community/astro-embed-youtube';
The new RemixSite construct makes it easy to deploy Remix apps to AWS.
Remix is a frontend focused framework that delivers modern web experiences but by relying on web standards. The SST community has been looking for a way to deploy a Remix app with SST.
Recently, Sean Matheson put together a very comprehensive PR implementing an SST construct that would deploy a Remix app.
Frank made a couple of changes and merged the PR to officially add the RemixSite construct to the SST family of constructs.
It allows you to:
We hosted a launch livestream on YouTube where we did a deep dive of the construct and its features.
<YouTube id="ZBbRZTTCwvU" posterQuality="high" />We also, took a look at the internal architecture and the construct code. Here's roughly what we covered.
sst start?The video is timestamped, so you can jump ahead.
You can get started with the RemixSite construct by taking our example for a spin:
$ npx create-sst@latest --template=examples/remix-app my-sst-app
$ cd my-sst-app
$ npm install
$ npx sst start
# Deploy to prod
$ npx sst deploy --stage prod
Also make sure to check out the docs.