T
TanStack9mo ago
evident-indigo

deploying server and client separately

is it possible to deploy the server and client separately so that we get more of a traditionally separate Node backend + React client setup? I'm not super familiar with how react full stack frameworks work, so i was wondering if something like this is still possible. E.g. if I wanted to put my server on a AWS EC2 instance with docker, can i still deploy my client on something like netlify? But still keep all the goodness that using the full stack tanstack start framework e.g. server fns, api routes etc
1 Reply
ratty-blush
ratty-blush9mo ago
If you need to deploy server and client separately Tanstack Start is probably not the right tool for the job. I'd recommend Tanstack Router + Express backend. I highly doubt Tanstack Start can be deployed separately because SSR works by sending HTML from the server and not having a separate client build.

Did you find this page helpful?