Skip to content

post is visible localhost:4000, but not visible https://~.github.io #3465

Answered by mmistakes
bom04 asked this question in Q&A
Discussion options

You must be logged in to vote

Jekyll is telling you what the issue is with:

Conflict: The following destination is shared by multiple files.
                    The written file may end up with unexpected contents.
                    C:/bom04.github.io/_site/index.html
                     - _pages/home.md
                     - index.html

It's finding a conflict between two files that are both trying to write to the same location index.html.
If you look at _pages/home.md you'll see that it's setting a permalink that is the same as the index.html file in the root of your site.

The fix is to remove _pages/home.md so Jekyll stops trying to override your paginated home index.html file. My guess is you forked the repo a…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by mmistakes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #3464 on February 18, 2022 12:18.