5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 15:11:53 +08:00

Add Angular docs

This commit is contained in:
Lea Anthony 2022-10-29 19:33:20 +11:00
parent ac8ed94ae6
commit 4cd89e1507
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405

View File

@ -0,0 +1,14 @@
# Angular
Whilst Wails does not have an Angular template, it is possible to use Angular with Wails.
## Dev Mode
To get dev mode working with Angular, you need to add the following to your `wails.json`:
```json
"frontend:build": "npx ng build",
"frontend:install": "npm install",
"frontend:dev:watcher": "npx ng serve",
"frontend:dev:serverUrl": "http://localhost:4200",
```