Files

14 lines
457 B
Plaintext
Raw Permalink Normal View History

2022-11-09 03:25:18 +08:00
# Angular
Wailsでは、Angular向けのテンプレートは用意されていませんが、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",
```