Skip to content

@astrojs/starlight@0.15.0

Compare
Choose a tag to compare
@astrobot-houston astrobot-houston released this 06 Dec 18:44
· 598 commits to main since this release
460fad6

Minor Changes

  • #1238 02a808e Thanks @delucis! - Add support for Astro v4, drop support for Astro v3

    鈿狅笍 BREAKING CHANGE Astro v3 is no longer supported. Make sure you update Astro and any other integrations at the same time as updating Starlight.

    Use the new @astrojs/upgrade command to upgrade Astro and Starlight together:

    npx @astrojs/upgrade
  • #1242 d8fc9e1 Thanks @delucis! - Enables link prefetching on hover by default

    Astro v4鈥檚 prefetch support is now enabled by default. If prefetch is not set in astro.config.mjs, Starlight will use prefetch: { prefetchAll: true, defaultStrategy: 'hover' } by default.

    If you want to preserve previous behaviour, disable link prefetching in astro.config.mjs:

    import { defineConfig } from 'astro/config';
    import starlight from '@astrojs/starlight';
    
    export default defineConfig({
    	// Disable link prefetching:
    	prefetch: false,
    
    	integrations: [
    		starlight({
    			// ...
    		}),
    	],
    });

Patch Changes