5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-05 13:11:38 +08:00
wails/website/i18n/ko/docusaurus-plugin-content-docs/current/guides/angular.mdx
Misite Bao 91de3ab0c5
docs: update and sync documents (#2112)
* docs: update options documentation

* docs: sync documents

* docs: sync Korean, Russian, French and Portuguese documents

* docs: sync Chinese, Japanese and Korean documents
2022-11-21 22:13:43 +11:00

14 lines
421 B
Plaintext

# Angular
Wails에는 Angular 템플릿이 없지만 Wails와 함께 Angular를 사용할 수 있습니다.
## 개발자 모드
Angular에서 작동하는 개발 모드를 사용하려면 `wails.json`에 다음을 추가해야 합니다.
```json
"frontend:build": "npx ng build",
"frontend:install": "npm install",
"frontend:dev:watcher": "npx ng serve",
"frontend:dev:serverUrl": "http://localhost:4200",
```