5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 20:22:08 +08:00
wails/website/i18n/ko/docusaurus-plugin-content-docs/version-v2.7.0/guides/angular.mdx
Lea Anthony 6a8322cdb5
v2.7.0
2023-12-09 17:29:56 +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",
```