github withastro/astro @astrojs/solid-js@4.2.0

latest releases: astro@4.11.3, astro@4.11.2, @astrojs/studio@0.1.1...
one month ago

Minor Changes

  • #10937 7179930 Thanks @florian-lefebvre! - Adds a devtools option

    You can enable the official Solid Devtools while working in development mode by setting devtools: true in your solid() integration config and adding solid-devtools to your project dependencies:

    npm install solid-devtools
    # yarn add solid-devtools
    # pnpm add solid-devtools
    import { defineConfig } from 'astro/config';
    import solid from '@astrojs/solid-js';
    
    export default defineConfig({
      integrations: [solid({ devtools: true })],
    });

Don't miss a new astro release

NewReleases is sending notifications on new releases.