CacheBustingConfig constructor
CacheBustingConfig({})
Implementation
CacheBustingConfig({
required final String mountPrefix,
required final Directory fileSystemRoot,
this.separator = '@',
}) : mountPrefix = _normalizeMount(mountPrefix),
fileSystemRoot = fileSystemRoot.absolute {
_validateFileSystemRoot(fileSystemRoot.absolute);
_validateSeparator(separator);
}