With the following astro.config.mjs file, the style sheet doesn't seem to be imported. Can you help?
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import remarkMath from 'remark-math';
import rehypeKaTeX from 'rehype-katex';
// https://astro.build/config
export default defineConfig({
markdown: {
remarkPlugins: [ remarkMath ],
rehypePlugins: [ rehypeKaTeX ],
},
integrations: [
starlight({
head: [
{
tag: 'link',
attrs: {
rel: 'stylesheet',
href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.css'
},
},
],
title: 'My Docs',
sidebar: [
{
label: 'Guides',
items: [
{ label: 'Example Guide', link: '/guides/example/' },
],
},
],
}),
],
});