JekyllServeSettingsExtensions.

DisableDiskCache(JekyllServeSettings, 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 JekyllServeSettings DisableDiskCache(this JekyllServeSettings settings, bool disable = true)

Parameters

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

Return Value

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