Framework Guides
Jekyll
Deploy a Jekyll site to Sample.app.
Jekyll outputs to _site/ by default.
Deploy
Build your site
bundle exec jekyll buildDeploy to Sample.app
samplex deploy ./_siteJekyll outputs to _site/, which is not auto-detected by the CLI. You must specify the directory
explicitly.
Custom output directory
You can change the output directory in _config.yml:
destination: distThen auto-detection will find it:
samplex deploy
