Problems with vue server rendering

our company"s PC project is a single-page application developed with vue. Recently, the leader said that our PC official website, Baidu only includes the home page that needs to solve the SEO problem with the server.
this is a problem that I do not understand. I read the introduction about server rendering. Does this thing not need the node environment? I can use the node environment when I am developing locally, but the project needs to be online. Can the java java we use in the background be combined with server rendering

May.28,2021

first SSR requires node environment and java background do not conflict. You can treat node as an intermediate layer.
secondly, do you really need SSR , or do you really just need Prerendering .


vue provides next.js that includes ssr to solve SEO problems. You can learn about

Menu