We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using the React Starter template if you right update server.ts and set ssr: false like this:
server.ts
ssr: false
import { serve } from "aleph/react-server"; import routes from "./routes/_export.ts"; serve({ router: { routes }, ssr: false, });
Then also updated the main.tsx to include hydrate: false like this:
main.tsx
hydrate: false
import { bootstrap } from "aleph/react-client"; bootstrap({hydrate: false});
All that occurs are 404 pages. Is there another step?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the React Starter template if you right update
server.ts
and setssr: false
like this:Then also updated the
main.tsx
to includehydrate: false
like this:All that occurs are 404 pages. Is there another step?
The text was updated successfully, but these errors were encountered: