Skip to content

Commit

Permalink
i18n(ko-KR): update vue.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
jsparkdev committed May 24, 2024
1 parent 5be0f30 commit cec57a1
Showing 1 changed file with 22 additions and 0 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" },
}),
],
});
```

0 comments on commit cec57a1

Please sign in to comment.