mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
7179930ac8
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
588 B
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 })
]
})