Reputation: 315
I'd like to use Next.js static site export, but I'd also like to have dynamic components within the templates so that a build wouldn't need to be done every time they change, for example, a 'navigation' component. From what I've read this doesn't seem possible? Are there any workarounds, aside from creating a separate client-side build step?
Upvotes: 0
Views: 1032
Reputation: 5840
Next is working on allowing for a combined static + SSR generated site, but they're not there yet. I see a few options currently:
Upvotes: 1