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
Variable | Default | Values | Details |
---|---|---|---|
PREFETCH_FOLDERS | true | true false | added in v3.12 |
PREFETCH_FILES | false | true false | added in v3.12 |
How to set configuration options
Set the environment variables when starting the container.
Use
Use
docker run
...- ...with
-e PREFETCH_FOLDERS=true
- ...with
--env-file .env
and placePREFETCH_FOLDERS=true
in the file