-
Hey! When I run |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@MarvinRudolph Hello! The
There's no functionality in
|
Beta Was this translation helpful? Give feedback.
-
Hey! When I run |
Beta Was this translation helpful? Give feedback.
-
@MarvinRudolph Hello! The
There's no functionality in
|
Beta Was this translation helpful? Give feedback.
@MarvinRudolph Hello! The
index.html
file is removed at the end of the build so it's normal that you don't find it. It's content is inlined in the SSR build so it should work without issues. To deploy, you can see an example of a Node.js server here (so anything that works with Node.js should be fine). There's also an example deploying to Vercel here.There's no functionality in
vite-ssr
for static pages at the moment. You can either use:vite-ssg
, which has similar API tovite-ssr
but focuses on static pages.vitedge
, which does SSR in CF workers so the result is cached at the edge (pretty much like a static file).