Skip to content

Backlinks

This page provides information on how you can configure the backlinks component.

Render

If you want to disable the backlinks component, you can do so by setting backlinks to false in the plugin settings.

astro.config.mjs
import starlight from '@astrojs/starlight'
import { defineConfig } from 'astro/config'
import starlightThemeObsidian from 'starlight-theme-obsidian'
export default defineConfig({
integrations: [
starlight({
plugins: [starlightThemeObsidian({
backlinks: false
})],
title: 'My Docs',
}),
],
})

Component configuration

For configuration of the backlinks component itself, check out the Starlight Site Graph backlinks configuration.