Skip to content

v0.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Oct 16:10
· 106 commits to main since this release
v0.4.0
0b20349

   🚨 Breaking Changes

  • Bump minimum required Astro version to 3.2.0 and Starlight to 0.11.0  -  by @HiDeoo (d231b)

  • Use Starlight component overrides for custom UI  -  by @HiDeoo (cdf7c)
    You must update your configuration to use the new Starlight component overrides:

    starlight({
    +  components: {
    +    MarkdownContent: 'starlight-blog/overrides/MarkdownContent.astro',
    +    Sidebar: 'starlight-blog/overrides/Sidebar.astro',
    +    ThemeSelect: 'starlight-blog/overrides/ThemeSelect.astro',
    +  },
    }),
    View changes on GitHub