hugo mod vendor

hugo mod vendor Vendor all module dependencies into the _vendor directory. Synopsis Vendor all module dependencies into the _vendor directory. If a module is vendored, that is where Hugo will look for it’s dependencies. hugo mod vendor [flags] Options -h, --help help for vendor Options inherited from parent commands --clock string set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00 --config string config file (default is path/config.yaml|json|toml) --configDir string config dir (default "config") --debug debug output -e, --environment string build environment --ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern --log enable Logging --logFile string log File path (if set, logging enabled automatically) --quiet build in quiet mode -s, --source string filesystem path to read files relative from --themesDir string filesystem path to themes directory -v, --verbose verbose output --verboseLog verbose logging SEE ALSO hugo mod - Various Hugo Modules helpers....

pseudokawaii

hugo mod verify

hugo mod verify Verify dependencies. Synopsis Verify checks that the dependencies of the current module, which are stored in a local downloaded source cache, have not been modified since being downloaded. hugo mod verify [flags] Options --clean delete module cache for dependencies that fail verification -h, --help help for verify Options inherited from parent commands --clock string set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00 --config string config file (default is path/config....

pseudokawaii

hugo new

hugo new Create new content for your site Synopsis Create a new content file and automatically set the date and title. It will guess which kind of file to create based on the path provided. You can also specify the kind with -k KIND. If archetypes are provided in your theme or site, they will be used. Ensure you run this within the root directory of your site. hugo new [path] [flags] Options -b, --baseURL string hostname (and path) to the root, e....

pseudokawaii

hugo new site

hugo new site Create a new site (skeleton) Synopsis Create a new site in the provided directory. The new site will have the correct structure, but no content or theme yet. Use hugo new [contentPath] to create new content. hugo new site [path] [flags] Options --clock string set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00 -e, --environment string build environment --force init inside non-empty directory -f, --format string config file format (default "toml") -h, --help help for site --ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern -s, --source string filesystem path to read files relative from --themesDir string filesystem path to themes directory Options inherited from parent commands --config string config file (default is path/config....

pseudokawaii

hugo new theme

hugo new theme Create a new theme Synopsis Create a new theme (skeleton) called [name] in ./themes. New theme is a skeleton. Please add content to the touched files. Add your name to the copyright line in the license and adjust the theme.toml file as you see fit. hugo new theme [name] [flags] Options --clock string set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00 -e, --environment string build environment -h, --help help for theme --ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern -s, --source string filesystem path to read files relative from --themesDir string filesystem path to themes directory Options inherited from parent commands --config string config file (default is path/config....

pseudokawaii