#What if I like app dir directory system but I don't want SSR
4 messages · Page 1 of 1 (latest)
'use client' does not disable SSR, it just means the components need to render both in the server and the client
it is the same behavior as the pagesdirectory
to entirely disable the pre-rendering behavior of next, you need to import your components with dynamic and ssr: false: https://nextjs.org/docs/advanced-features/dynamic-import#with-no-ssr