What is the difference between nuxt "server-side rendering application deployment" and "static deployment"?

what"s the difference between "server-side rendering application deployment" and "static deployment" in nuxt? doesn"t
mean the same thing?

Mar.31,2021

Server rendering application deployment : every request goes through the server, query the database or interface, and the html, is returned after rendering the template.
static deployment : after all routing pages are processed in advance, static html, is generated as a static website that does not need a server at all.


static deployment: all paths are packaged into files such as index.html a.html b.html, and the actual access, the server will serve these files out, belonging to file services.
Server rendering deployment: the request will go through express's render, which will change dynamically if you want, because it is spliced.
static deployment. If you want to request data and put it in the page, you can only do it on the client side.
Server rendering deployment, to request data and put it in the page, you can do it on the server or on the client side.
it can be said that static deployment, like what vue cli's build generates, is a static file.
it can be said that the server-side rendering deployment is the same as express's render.

Menu