0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/.changeset/thin-rabbits-wait.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
408 B
Markdown
Raw Normal View History

---
"@astrojs/vue": minor
---
Adds a `devtools` option
You can enable the [official Vue DevTools](https://devtools-next.vuejs.org/) while working in development mode by setting `devtools:true` in your `vue()` integration config:
```js
import { defineConfig } from "astro/config"
import vue from "@astrojs/vue"
export default defineConfig({
integrations: [
vue({ devtools: true })
]
})
```