Skip to content

Implementing Comment Functionality (Giscus) in Astro Starlight

I’ve implemented a comment feature (Giscus) using GitHub Discussions in Astro’s documentation template Starlight, so I’m leaving this as a record for future reference.

What is Giscus?

Giscus is a commenting system that utilizes GitHub Discussions.

It’s lightweight and uses GitHub authentication, making it excellent for spam prevention.

Prerequisites

  • An Astro Starlight website is set up
  • You have a GitHub account
  • You have a repository with GitHub Discussions enabled

Installation Steps

  1. Install starlight-giscus

    First, install the starlight-giscus plugin. Run the following command in your terminal:

    Terminal window
    pnpm add starlight-giscus

  2. Configure the Giscus app

    Set up Giscus for your repository on the Giscus official site.

    Enter the required information and generate the script code, then copy it.

  3. Update the Astro configuration file

    Open the astro.config.mjs file and add the following configuration:

    astro.config.mjs
    import starlight from '@astrojs/starlight'
    import { defineConfig } from 'astro/config'
    import starlightGiscus from 'starlight-giscus'
    export default defineConfig({
    integrations: [
    starlight({
    plugins: [
    starlightGiscus({
    repo: 'data-repo',
    repoId: 'data-repo-id',
    category: 'data-category',
    categoryId: 'data-category-id'
    })
    ],
    title: 'My Docs',
    }),
    ],
    })

    Replace the values for repo, repoId, category, and categoryId with those generated in your Giscus configuration.

    These four are required fields, but there are other customization options available. Details will be discussed later.

Customization Options

The starlight-giscus plugin has the following customization options:

  • mapping (string): How to map pages to discussions (what the discussion title will be)
    • pathname (default): Page’s pathname
    • URL: Page’s URL
    • <title>: Page’s title
    • og:title: Page’s og:title
  • reactions (boolean): Enable/disable reactions feature
  • inputPosition (string): Position of the reply form
    • bottom (default): Below comments
    • top: Above comments
  • theme (string): Theme for the comment section
  • lazy (boolean): Enable/disable lazy loading

You can use these options to customize the comment functionality to suit your site.

Disabling Comments on Specific Pages

By default, comments will appear on pages where they might not be necessary, such as the top page, as shown below.

Image from Gyazo

If you have pages where you don’t want comments to appear, you can control this using frontmatter.

Configuration Steps

  1. Extend the schema in the src/content.config.ts file

    src/content.config.ts
    import { defineCollection, z } from 'astro:content'
    import { docsLoader } from '@astrojs/starlight/loaders'
    import { docsSchema } from '@astrojs/starlight/schema'
    export const collections = {
    docs: defineCollection({
    loader: docsLoader(),
    schema: docsSchema({
    extend: z.object({
    giscus: z.boolean().optional().default(true),
    }),
    }),
    }),
    }
  2. Add giscus: false to the frontmatter of pages where you want to disable comments.

    ---
    title: Page without comments
    giscus: false
    ---

If Using the starlight-blog Plugin

If you’re using the starlight-blog plugin, call blogSchema(context) within the extend function, then add giscus.

Also, set the default to false if you want to disable giscus on blog pages and tag pages.

Configuration Steps

  1. Extend the schema in the src/content.config.ts file

    src/content.config.ts
    import { defineCollection, z } from 'astro:content'
    import { docsLoader } from '@astrojs/starlight/loaders'
    import { docsSchema } from '@astrojs/starlight/schema'
    import { blogSchema } from 'starlight-blog/schema';
    export const collections = {
    docs: defineCollection({
    loader: docsLoader(),
    schema: docsSchema({
    extend: (context) => blogSchema(context).extend({
    giscus: z.boolean().optional().default(false)
    })
    }),
    }),
    }
  2. Add giscus: true to the frontmatter of pages where you want to enable comments.

    ---
    title: Page with comments
    date: 2025-03-17
    giscus: true
    ---