The following is an example of a yaml config file with the default values:
---
- sourcedir: "content"
+ contentdir: "content"
layoutdir: "layouts"
publishdir: "public"
builddrafts: false
The following is an example of a json config file with the default values:
{
- "sourcedir": "content",
+ "contentdir": "content",
"layoutdir": "layouts",
"publishdir": "public",
"builddrafts": false,
The following is an example of a toml config file with the default values:
- sourcedir = "content"
+ contentdir = "content"
layoutdir = "layouts"
publishdir = "public"
builddrafts = false