Astro: @astrojs/[email protected] Release

Release date:
March 26, 2026
Previous version:
@astrojs/[email protected] (released March 18, 2026)
Magnitude:
7,354 Diff Delta
Contributors:
13 total committers
Data confidence:
Commits:

68 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored March 26, 2026
Authored March 19, 2026
Authored March 19, 2026
Authored March 20, 2026
Authored March 24, 2026
Authored March 25, 2026
Authored March 23, 2026

Top Contributors in @astrojs/[email protected]

ematipico
matthewp
astrobot-houston
seroperson
ljharb
renovate-bot
merlinnot
kylemclean
florian-lefebvre
pierreeurope

Directory Browser for @astrojs/[email protected]

All files are compared to previous version, @astrojs/[email protected]. Click here to browse diffs between other versions.

Loading File Browser...

Release Notes Published

Minor Changes

  • #15862 06fba3a Thanks @crutchcorn! - Adds support for passing a Babel config to the Preact Vite Plugin:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import preact from '@astrojs/preact';
    
    export default defineConfig({
      integrations: [
        preact({
          babel: {
            generatorOpts: {
              importAttributesKeyword: 'with',
            },
          },
        }),
      ],
    });