Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ko/api/configuration-watchers #87

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions ko/api/configuration-watchers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
title: "API: watchers 프로퍼티"
description: watchers 프로퍼티는 watchers 설정을 덮어씌웁니다
---

# watchers 프로퍼티

- 타입: `Object`
- 기본값: `{}`

> watchers 프로퍼티는 당신의 nuxt.config.js 파일의 watchers 설정을 덮어씌웁니다.

## chokidar

- 타입: `Object`
- 기본값: `{}`


chokidar 옵션에 대해 더 알고싶으시면 [chokidar API](https://github.com/paulmillr/chokidar#api) 문서를 확인 바랍니다.

## webpack

- 타입: `Object`
- 기본값:

```js
watchers: {
webpack: {
aggregateTimeout: 300,
poll: 1000
}
}
```

webpack watchoptions에 대해 더 알고싶으시면, [webpack documentation](https://webpack.js.org/configuration/watch/#watchoptions) 문서를 확인 바랍니다.