How to disable ssr in solidstart?

i wanna disable ssr
1 Reply
Birk Skyum
Birk Skyum•4mo ago
In the vite config set the flag
start: {
ssr:false
}
start: {
ssr:false
}
This works for client side rendered (CSR) single page applications (SPA). In case you want to do static site generation (SSG), it's another story, because it's technically done by having server rendering pre-render each page.