Skip to content

v0.13.0

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Nov 11:09
· 16 commits to main since this release
v0.13.0
b076fa0

   🚨 Breaking Changes

  • Adds errors for local links, e.g. URLs with a hostname of localhost or 127.0.0.1  -  by @HiDeoo (80636)

    In previous versions, such links were silently ignored. They are now considered as invalid links as they are usually used for development purposes and should not be present in production.
    If you want to preserve the previous behaviour, you can set the errorOnLocalLinks option to false in your astro.config.mjs file:

    export default defineConfig({
      integrations: [
        starlight({
          plugins: [
            starlightLinksValidator({
              errorOnLocalLinks: false,
            }),
          ],
        }),
      ],
    });
    View changes on GitHub