mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-16 23:55:52 +01:00
16 lines
386 B
Text
16 lines
386 B
Text
# 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",
|
|
```
|