Minor Changes
-
#11055
b92de22
Thanks @niklas-wortmann! - Updates thedevtools
type to allow passingVueDevToolsOptions
For more customization, you can pass options that the Vue DevTools Vite Plugin supports. (Note:
appendTo
is not supported.) For example, you can setlaunchEditor
to your preferred editor if you are not using Visual Studio Code:import { defineConfig } from 'astro/config'; import vue from '@astrojs/vue'; export default defineConfig({ // ... integrations: [ vue({ devtools: { launchEditor: 'webstorm' }, }), ], });