Is there a way to deploy the application as a static website (that can be hosted on s3, netlify, firebase...) so without the need to run the nuxt start
.
I know there is the nuxt generate
command but this one will generate all the pages according to the data you give at build time, exemple the page /users/3
but what happen if a new user register, we have to redeploy for this guy... so this is not a solution for complex application.
I would like to have something similar to the webpack based vue config with the npm run build
where the output is a simple index.html (similar to the one in .nuxt/dist/index.spa.html
) file with all the assets generated.