Skip to main content
Version: v3 (latest✅)

Prefetching on Hover

By default, hovering over a folder link in the filetree will prefetch the contents of the folder. This can be disabled by setting the PREFETCH_FOLDERS environment variable to false. Prefetching of files is disabled by default because it downloads the file in the background and may increase the counter inadvertently. This can be enabled again by setting the PREFETCH_FILES environment variable to true.

⚙️ Configuration

VariableDefaultValuesDetails
PREFETCH_FOLDERStruetrue
false
added in v3.12
PREFETCH_FILESfalsetrue
false
added in v3.12
How to set configuration options
Set the environment variables when starting the container.
Use docker run...
  • ...with -e PREFETCH_FOLDERS=true
  • ...with --env-file .env and place PREFETCH_FOLDERS=true in the file
See installation page for more details.