If you don't need SSR, then Gridsome is a better choice. Girdsome generates complete HTML content (better for SEO) whereas Nuxt generates only a minimal HTML page that always needs to be hydrated first.
In a recent project, I needed a blog where each article would contain a button to tweet it. The problem with nuxt was that all generated HTML pages contained just the globally defined meta tags. A workaround was to hook to the build process of `nuxt generate`.
In a recent project, I needed a blog where each article would contain a button to tweet it. The problem with nuxt was that all generated HTML pages contained just the globally defined meta tags. A workaround was to hook to the build process of `nuxt generate`.