Astro: @astrojs/[email protected] Release

Release date:
May 9, 2024
Previous version:
@astrojs/[email protected] (released April 11, 2024)
Magnitude:
7,022 Diff Delta
Contributors:
19 total committers
Data confidence:
Commits:

108 Commits in this Release

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

Authored May 2, 2024
Authored April 18, 2024
Authored May 7, 2024
Authored April 25, 2024
Authored May 1, 2024
Authored April 25, 2024
Authored April 18, 2024
Authored April 11, 2024
Authored May 3, 2024
Authored April 16, 2024
Authored April 18, 2024

Top Contributors in @astrojs/[email protected]

ematipico
Princesseuh
bholmesdev
rishi-raj-jain-01ee
szepeviktor
BryceRussell
trusktr
PeterDraex
jurajkapsz
mingjunlu

Directory Browser for @astrojs/[email protected]

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • #10929 082abb8 Thanks @florian-lefebvre! - Adds a devtools option

    You can enable the official Vue DevTools while working in development mode by setting devtools:true in your vue() integration config:

    import { defineConfig } from 'astro/config';
    import vue from '@astrojs/vue';
    
    export default defineConfig({
      integrations: [vue({ devtools: true })],
    });