You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had this problem after adding extra configurations to site.toml. My fix was reverting them. Only changing theme to dark mode worked so far.
FYI I tried the following:
## Global Site Settings ##
# this [site] table defines override settings for the whole site
# later on we will see how to define settings for a single page
[site]
## Custom Meta Tags ##
# defined as an array of tables (double square brackets)
# each key in the table maps to an atttribute in the tag
# the following adds the tag <meta name="title" content="Loconotion Test Site"/>
[[site.meta]]
name = "title"
content = "Fabiano J. M. Manschein"
[[site.meta]]
name = "description"
content = "Fabiano's personal website"
## Custom Element Injection ##
# defined as an array of tables [[site.inject]], followed by 'head' or 'body' to set
# the injection point, followed by name of the tag to inject
# each key in the table maps to an atttribute in the tag
# e.g. the following injects this tag in the <head>:
# <link href="favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/>
[[site.inject.head.link]]
rel="icon"
sizes="64x64 32x32 24x24 16x16"
type="image/x-icon"
href="/favicon.ico"
I assume I made a mistake with the favicon configuration, causing the same error as yours.
any ideas?
The text was updated successfully, but these errors were encountered: