Files

14 lines
385 B
Plaintext
Raw Permalink Normal View History

2022-11-09 22:26:22 +11:00
# Angular
2022-12-30 07:38:22 +11:00
Whilst Wails does not have an Angular template, it is possible to use Angular with Wails.
2022-11-09 22:26:22 +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",
```