Basic Configuration
The configuration is done in the config.yml
file and in the .env
file. The minimal configuration is the following, let's unpack it!
config.yml
content:
title: "cestmaddy"
language: en
header: "header.md"
footer: "footer.md"
theme: "tailwind"
favicon: {
path: "res/img/monogram_color.svg",
background: "#eaeaea",
theme_color: "#1a1a1a"
}
title
: The title of your websitelanguage
: The language of your website on 2 characters (ISO 639-1)header
: The path to the header file of your website (in thesource
folder)footer
: The path to the footer file of your website (in thesource
folder)theme
: The name of the theme you want to use (in thethemes
folder)favicon
: The favicon of your websitepath
: The path to the favicon file (in thesource
folder)background
: The background color of the favicon (for PWAs)theme_color
: The theme color of the favicon (for PWAs)
.env
PORT=3000
PORT
: The port on which the server will run