Should we use SSG for deploying a dashboard created using Nuxt.js?

Solution 1:

You can totally target: 'static' and ssr: false and deploy your app to Netlify for free. You don't need a Node.js server because you'll be serving static JS files only (generated during build time). So, only a CDN is enough (basically Netlify).

Also, do you use the other parts of Nuxt here? Nuxt's main benefit is the universal mode. Of course, it has other advantages but you could use Vitesse or vanilla Vue3 if you want to move a bit quicker (Nuxt3 allows for the usage of Vue3, Nuxt2 is focused on Vue2 only).