JekyllCleanSettingsExtensions.

DisableDiskCache(JekyllCleanSettings, bool) Method

Summary

Sets if caching to disk in non-safe mode should be disabled. --disable-disk-cache Disable caching of content to disk in order to skip creating a `.jekyll-cache` or similar directory at the source to avoid interference with virtual environments and third-party directory watchers. Caching to disk is always disabled in safe mode.

Syntax

public static JekyllCleanSettings DisableDiskCache(this JekyllCleanSettings settings, bool disable = true)

Parameters

Name Type Description
settings JekyllCleanSettings The settings.
disable bool to disable caching to disk in non-safe mode, otherwise .

Return Value

Type Description
JekyllCleanSettings The settings instance with the DisableDiskCache property updated with the value provided in disable.