-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Like Next.js but without SSR #11
Comments
Might be a good chance to contribute to the alternative then? 🤔😋 |
@manniL Yeah I opened an issue nuxt/nuxt#6862 |
sounds like serlina.js.org |
@djyde Only if it meets these requirements:
|
@egoist
|
Technically yes, but it's much more convenient than vanilla react spa, you get file-system routing for free and many other neat features. btw in Next.js there is a way to disable SSR for certain components: https://nextjs.org/docs/advanced-features/dynamic-import#with-no-ssr so we don't need to worry about this
I meant the SSR for regular react pages can be disabled, you can still have a server for API pages. |
The idea
Next.js for building single-page app (client rendering only)
I love that you can use Next.js to develop your frontend
pages/*.tsx
and apipages/api/*.ts
at the same time in a single project, but it's also quite annoying that Next.js requires your frontend code to be SSR compatible even if you don't need any of those SSR features.Alternatives
The text was updated successfully, but these errors were encountered: