Environment variables
Available environment variables to configure Lume
Lume has the following environment variables that you can use with deno task lume
:
LUME_DRAFTS
All pages with the variable
draft: true
are ignored by Lume. With this variable you can configure Lume to export the draft variables too. Useful for development environments.LUME_DRAFTS=true deno task lume
LUME_LOGS
Lume uses the following log levels:
DEBUG
,INFO
,WARNING
,ERROR
andCRITICAL
. By default isINFO
, you can change it with this environment variable to have more or less details of the build process. For example, to only show critical errors, hiding everything else:LUME_LOGS=critical deno task lume
LUME_NOCACHE
Lume has a cache for remote files, so they are downloaded only once. Use this environment variable to disable it.
LUME_NOCACHE=true deno task lume