[Vuejs]-How I do Static page in Vue js with full-featured Webpack

0👍

You can have multiple strategies for this.

One could be to use Server-Side Rendering as explained in vue js documentaiton which is quite easy to understand.

The other one would be to have a static html page which will be the entry point to your app. It will be SEO optimized and you will have a call to action button that will redirect to your actual vuejs app. So in your webserver the url https://example.org redirects to your static page, and when you click on the link, it will redirect you to https://example.org/app which would be the entrypoint of your vuejs app.

Leave a comment