mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
082abb82d5
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
408 B
408 B
@astrojs/vue |
---|
minor |
Adds a devtools
option
You can enable the official Vue DevTools while working in development mode by setting devtools:true
in your vue()
integration config:
import { defineConfig } from "astro/config"
import vue from "@astrojs/vue"
export default defineConfig({
integrations: [
vue({ devtools: true })
]
})