Skip to content

Intro

This page contains information pertaining the configuration of the backlinks component.

Compared to the graph component, the backlinks does not have as many configuration options (or more correctly: just 1). Regardless, the backlinks component can be ‘configured’ in one of three ways:

astro.config.mjs
import starlight from '@astrojs/starlight'
import { defineConfig } from 'astro/config'
import starlightSiteGraph from 'starlight-site-graph'
export default defineConfig({
integrations: [
starlight({
plugins: [starlightSiteGraph({
backlinksConfig: {
// Global backlinks configuration
}
})],
}),
],
})

Sections