alephjs / aleph.js

The Full-stack Framework in Deno.

Home Page:https://alephjs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ssr: false doesn't work

kealjones-wk opened this issue · comments

When using the React Starter template if you right update server.ts and set ssr: false like this:

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:

import { bootstrap } from "aleph/react-client";

bootstrap({hydrate: false});

All that occurs are 404 pages. Is there another step?