Netlify 部署的站点视图与本地 jekyll 服务不同
Netlify deployed site view different than local jekyll serve
我正在尝试部署一个 jekyll 网站,特别是在 Jekyll Uno template. The local view is completely fine, however, when I tried to deploy it, it looked something like this. P.S. the github repo is this and the local view looks like this 中。知道是什么原因造成的吗?
您正在从 gh-pages 转移到 Netlify 部署。然后您必须更改一些配置。
在_config.yml中,更改
url: 'https://srdg.github.io'
baseurl: '/jekyll-uno'
到
url: 'https://soumik.netlify.com'
baseurl: ''
您也可以停止在 gh-pages 上发布,方法是进入存储库 设置 并设置 Github 页面 >> 来源 到 none
。这可以避免您出现重复内容和 SEO 问题。
我正在尝试部署一个 jekyll 网站,特别是在 Jekyll Uno template. The local view is completely fine, however, when I tried to deploy it, it looked something like this. P.S. the github repo is this and the local view looks like this 中。知道是什么原因造成的吗?
您正在从 gh-pages 转移到 Netlify 部署。然后您必须更改一些配置。
在_config.yml中,更改
url: 'https://srdg.github.io'
baseurl: '/jekyll-uno'
到
url: 'https://soumik.netlify.com'
baseurl: ''
您也可以停止在 gh-pages 上发布,方法是进入存储库 设置 并设置 Github 页面 >> 来源 到 none
。这可以避免您出现重复内容和 SEO 问题。