Ignored files
Because Combine is used to generate a static site, you will typically want to keep templates or other source files out of your final build.
There are three ways to keep files out of your generated site.
- Use
{name}.template.{extension}
, like we do forbase.template.html
and other templates. - Start the file name with an
_
, such as_main.css
. This is often combined with build steps for source files. - Start the file name with a
.
, like hidden files on your OS.