5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 23:51:44 +08:00
wails/website/versioned_docs/version-v2.9.0/guides/angular.mdx
Lea Anthony 8b215a9b4c
v2.9.0
2024-06-16 10:34:01 +10:00

14 lines
386 B
Plaintext

# 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",
```