mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
18 lines
408 B
Markdown
18 lines
408 B
Markdown
|
---
|
||
|
"@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 })
|
||
|
]
|
||
|
})
|
||
|
```
|