Skip to content

Latest commit

 

History

History
70 lines (58 loc) · 1.03 KB

File metadata and controls

70 lines (58 loc) · 1.03 KB

Analytics

oranda supports automatically inserting the correct analytics snippet your provider into your generated pages.

Right now we support the following analytics providers:

To add any of these, add the required configuration under the analytics key:

Google Analytics

{
  "marketing": {
    "analytics": {
      "google_analytics": {
        "tracking_id": "String"
      }
    }
  }
}

Plausible

{
  "marketing": {
    "analytics": {
      "plausible": {
        "domain": "String",
        "script_url": "Optional string for self hosted"
      }
    }
  }
}

Fathom

{
  "marketing": {
    "analytics": {
      "fathom": {
        "site": "String"
      }
    }
  }
}

Umami

{
  "marketing": {
    "analytics": {
      "umami": {
        "website": "String",
        "script_url": "String"
      }
    }
  }
}