Forrest logo
back to the jekyll tool

jekyll:tldr:c1abf

jekyll: Enable verbose output.
$ jekyll serve --verbose
try on your machine

The command jekyll serve --verbose is used to start a local development server for a Jekyll site with verbose output enabled.

Here is a breakdown of the different components of this command:

  • jekyll is the command-line tool used to build and manage Jekyll sites.
  • serve is one of the commands that Jekyll provides, and it is used to start a local development server that serves the Jekyll site on your computer.
  • --verbose is an optional flag that can be added to the command to enable verbose output. When this flag is used, Jekyll will provide more detailed information about the build process and any potential errors or warnings.

By running jekyll serve --verbose, you start a local server that serves your Jekyll site, and you get more detailed information displayed in the console as the site is being built and served. This can be helpful for debugging and understanding the build process.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the jekyll tool