timovv / notion-website-template

Make a personal website using Notion and GitHub Pages
130 stars 62 forks source link

Run loconotion times out #16

Open linkcell opened 1 year ago

linkcell commented 1 year ago

[01:07:45] CRITICAL Timeout waiting for page content to load, or no content found. Are you sure the page is set to public?

any ideas?

Fabulani commented 1 year ago

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.