How to add Node.js & npm to jekyll in GitHub Codespaces

from blog Christian Fei's Blog - cri.dev, | ↗ original
You can use GitHub CodeSpaces to develop your Jekyll site. But you need to install Node.js and npm to use e.g. TailwindCSS. So, if you haven’t already, create a file called devcontainer/devcontainer.json in your repository, with the following content: { "name": "Jekyll", "image": "mcr.microsoft.com/devcontainers/jekyll:0-bullseye", ...