npm run dev
1. xhr request to load is *not* visible in chrome dev tools. (correctly ssr'ed)
```bash
npm run build
cd dist/analog
node server/index.mjs
xhr request to load is visible in chrome dev tools. was pre-rendered with default vite.config.ts. Then, when the page completed on client, it requested "load" again.
# updating vite.config.ts to https://github.com/analogjs/analog/pull/1379/files
# so site is 100% ssr'ed
npm run build
cd dist/analog
node server/index.mjs
xhr request to load is visible in chrome dev tools. was ssr'ed meaning server executed load, then the client refreshed by calling load again on the client.
Please provide the environment you discovered this bug in.
node: 20.11.1, Apple M1 Max, analogjs 1.8.2
Which area/package is the issue in?
vite-plugin-nitro
Description
Project Setup
scaffold with option: "Full-stack Application"
index.page.ts
index.server.ts
Please provide the exception or error you saw
Other information
example: https://www.improvingstartups.com/startupwiki/ home page is ssr'ed and xhr request to
/api/_analog/pages/-index-
is unexpected .I would be willing to submit a PR to fix this issue