Type Alias: NodeFileSystemLoaderOptions
NodeFileSystemLoaderOptions:
object
Options for a file system template loader in the NodeJS runtime.
Type declaration
encoding?
optionalencoding:BufferEncoding
The encoding to use when reading from a template file. All template files in the search path are assumed to have the same encoding. Defaults to utf8.
fileExtension?
optionalfileExtension:string
A default file extension to apply if none is given. For example, to allow
template authors to write {% include 'page' %} instead of
{% include 'page.liquid' %}, set fileExtension to '.liquid'.
Defaults to the empty string.