I have a web application in Laravel 7
and Vuejs2
which have some pages like home, about, cities and help. these page need to be crawled by search engines.
I have tried both ways, prerendering
and server side rendering
without success.
for pre-render
there is only one package prerender-spa-plugin
which is very old and not updated since 5 years.
server-side-rendering
is also difficult because my web app is already designed and is going to production, it is hard to implement that now, and also not recommended to implement server-side-rendering
because of 5 pages.
any suggestion are appreciated to make these 5 pages crawelable by search engine.
update: my application contain other pages and components which do not need to be SE optimized, pages like user account and profiles.