Jekyll 上的 Localhost 不呈现 css:它只呈现在线

Localhost on Jekyll does not render css: it only renders online

到目前为止,我一直在本地主机上构建我的网站。

有时我不得不建立一个额外的页面。但后来我注意到,在我的本地主机上进行设计时,css 没有呈现到那个新页面(index.html 除外)。

所以我必须在路径 <link href="/css/style.css" rel="stylesheet"> 中添加一个 / 以便 css 显示在我的新页面上并直接从根目录构建。

具有讽刺意味的是,这在我的本地主机上不起作用。这有点烦人,因为现在我无法在我的本地主机上设计我的网站。

为什么 Jekyll 会这样?我如何在本地进行设计?

本地主机地址:http://127.0.0.1:4000/boilerplate/

Link 回购:https://github.com/bomengeduld/boilerplate/tree/gh-pages

你的服务器地址应该是 http://127.0.0.1:4000 而没有 'boilerplate'(或者你应该添加 'boilerplate' 作为你的 baseurl)。