summaryrefslogtreecommitdiff
path: root/packages/integrations/vue/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/vue/CHANGELOG.md')
-rw-r--r--packages/integrations/vue/CHANGELOG.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/integrations/vue/CHANGELOG.md b/packages/integrations/vue/CHANGELOG.md
index b1f95541d..acef2a55e 100644
--- a/packages/integrations/vue/CHANGELOG.md
+++ b/packages/integrations/vue/CHANGELOG.md
@@ -1,5 +1,27 @@
# @astrojs/vue
+## 4.3.0
+
+### Minor Changes
+
+- [#11055](https://github.com/withastro/astro/pull/11055) [`b92de22`](https://github.com/withastro/astro/commit/b92de22d2853efc4da4270a3812b9db120d06d3a) Thanks [@niklas-wortmann](https://github.com/niklas-wortmann)! - Updates the `devtools` type to allow passing `VueDevToolsOptions`
+
+ For more customization, you can pass options that the [Vue DevTools Vite Plugin](https://devtools-next.vuejs.org/guide/vite-plugin#options) supports. (Note: `appendTo` is not supported.) For example, you can set `launchEditor` to your preferred editor if you are not using Visual Studio Code:
+
+ ```js title="astro.config.mjs"
+ import { defineConfig } from 'astro/config';
+ import vue from '@astrojs/vue';
+
+ export default defineConfig({
+ // ...
+ integrations: [
+ vue({
+ devtools: { launchEditor: 'webstorm' },
+ }),
+ ],
+ });
+ ```
+
## 4.2.0
### Minor Changes