Hey web devs,<p>So I'm building a site-building service<p>Basically a user's site like "robert.site.com" will resolve by using the subdomain "robert" as a parameter.<p>Now I'm stuck between using static or dynamic rendering.<p>a) static means I'd pre-render html files and serve it accordingly<p>b) dynamic means I'd have react templates and hydrate them using json<p>I feel like (a) creates a more brittle experience (static content not mapping 1:1) and requires storage buckets<p>yet (b) could have penalties on SEO and other shortcomings.<p>Is anyone able to weigh in? What would you go with?