deploy hugo blog in vercel
我最近在创建一个 sora video 收集网站,使用 hugo 来开发,同时部署到 Vercel 上。在部署时遇到一些问题,以下是一个简单的记录。 Install Hugo 你可以查看 Hugo 官网来安装 hugo。在 mac 上,我使用 brew 安装。 brew install hugo Build in Local 我使用的是 https://gethinode.com/ ,A clean documentation and blog theme for your Hugo site based on Bootstrap 5. Create a new site hugo new site my-hinode-site && cd my-hinode-site Initialize the module system hugo mod init example.com/my-hinode-site echo "module.imports" >> hugo.toml echo "path = 'github.com/gethinode/hinode'" >> hugo.toml Start a development server ...