Files

14 lines
385 B
Plaintext
Raw Permalink Normal View History

2022-12-29 16:00:10 +11:00
# Angular
2023-09-06 19:45:08 +10:00
Whilst Wails does not have an Angular template, it is possible to use Angular with Wails.
2022-12-29 16:00:10 +11:00
## 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",
```