0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/.changeset/olive-bags-drive.md
Florian Lefebvre 7179930ac8
feat(solid): add support for devtools (#10937)
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2024-05-08 16:48:17 +02:00

588 B

@astrojs/solid-js
minor

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 })
    ]
})