Hacker News new | ask | show | jobs
Ask HN: What stack are you using for static sites with a CMS
2 points by duncanphillips 1355 days ago
Hiya! I'm building out a static site that requires occasional content changes.

I'm thinking of building the frontend with a static site generator like hugo, and pulling the content from a CMS like strapi on build (triggered when cms is updated).

Keen to hear how others are approaching this?

1 comments

Strapi is definitely a great choice: open-source, fully customizable, large community. Disclaimer: I'm one of its creators.

As for the front-end, Hugo is a good choice if you want to build a simple website. However, my recommendation would be to use a front-end framework like Next.js or Nuxt.js so you can benefit from the capabilities of React or Vue.js while having the advantages of both static and dynamic (through Server-Side Rendering).

You can find plenty of tutorials here: https://strapi.io/blog/categories/tutorials?type=v4

thanks, appreciated