I don't think it's currently possible. Why exactly do you want this kind of behavior?
Good suggestion. It would by quite handy for private pages. In some cases authentication is easier to implement in SPA-only mode. I use no-ssr wrapper for such pages, for example in shopping cart page.
As @DreaMinder mentioned private pages, or pages that I dont care about SEO in general.
@Mrkisha Wrap content in <no-ssr>, refrain from using fetch() and asyncData() in your desired pages and they're essentially SPAs.
BTW it can be implemented by declaring SPA-routes in reverse-proxy (nginx) to use SPA-fallback entry point file, 200.html.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
As @DreaMinder mentioned private pages, or pages that I dont care about SEO in general.