Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify-delete-quickstart-page-389072bb.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Custom JS is available as an add-on to the Pro plan.
Custom JS allows you to add custom executable code globally. It is the equivalent of adding a <script> tag with JS code into every page.

Adding Custom JavaScript

Any .js file inside the content directory of your docs will be included in every documentation page. For example, you can add the following ga.js file to enable Google Analytics across the entire documentation.
window.dataLayer = window.dataLayer || [];
function gtag() {
  dataLayer.push(arguments);
}
gtag('js', new Date());

gtag('config', 'TAG_ID');
Please use with caution to not introduce security vulnerabilities.