Reputation: 11
When i enter the command:
jekyll serve
,
i get following notice:
$ jekyll serve
Configuration file: e:/workspace/soohu.github.com/_config.yml
Source: e:/workspace/soohu.github.com
Destination: e:/workspace/soohu.github.com/_site
Generating...
done.
and the jekyll stop, without server running.
I check the file_site
and can see the static pages in it, and of course i can't view the site locally.
Does anybody know why?
thanks
Upvotes: 1
Views: 206
Reputation: 1953
I just had the same problem and fixed by just appending --force_polling
at the end of jekyll serve
, aka jekyll serve --force_polling
.
For detail, please refer to this issue 'jekyll serve' generating done without server on.
Upvotes: 1