Hugo and Azure Static Web Apps
Azure Static Web Apps are free, so why not use them? This site is hosted on it, and it literally costs me zero money. Let’s go! What you need A GitHub account An Azure account Steps If you haven’t already, install Git Install Hugo Create a new Hugo site (locally). Example: hugo new site mysite cd mysite Create a GitHub repo and commit the site. Example: 1 2 3 git init git add ....