Skip to content

Commit

Permalink
Merge branch 'main' into nav
Browse files Browse the repository at this point in the history
  • Loading branch information
yanthomasdev authored May 24, 2024
2 parents 2b9011e + bbf793a commit 00fd6ce
Show file tree
Hide file tree
Showing 10 changed files with 501 additions and 487 deletions.
22 changes: 22 additions & 0 deletions src/content/docs/ko/guides/integrations-guide/vue.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,26 @@ export default defineConfig({
// ...
integrations: [vue({ devtools: true })],
});
```

#### Vue DevTools 사용자 정의

<p><Since pkg="@astrojs/vue" v="4.3.0" /></p>

더 많은 사용자 정의를 위해 [Vue DevTools Vite 플러그인](https://devtools-next.vuejs.org/guide/vite-plugin#options)이 지원하는 옵션을 전달할 수 있습니다. (참고: `appendTo`는 지원되지 않습니다.)

예를 들어 Visual Studio Code를 사용하지 않는 경우 `launchEditor`를 원하는 편집기로 설정할 수 있습니다.

```js title="astro.config.mjs"
import { defineConfig } from "astro/config";
import vue from "@astrojs/vue";

export default defineConfig({
// ...
integrations: [
vue({
devtools: { launchEditor: "webstorm" },
}),
],
});
```
Loading

0 comments on commit 00fd6ce

Please sign in to comment.