Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Thanks to the @mipadi answer, I learned that Pow automatically serves static files in the
publicdirectory of your application, so just configure Jekyll to change the directory where Jekyll will write files to from_site(the default) topublic. Sincepublicdoesn’t start with an underscore (_), you also have to add it to the list of files & directories to exclude. The relevant parts of my_config.yamllook like this:Then, just do the usual:
And navigate to http://myjekyllsite.dev/.
Pow public directory trailing slash issue: Going to http://myjekyllsite.dev/projects should automatically redirect to http://myjekyllsite.dev/projects/ but didn’t.