5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 16:02:07 +08:00
wails/website/i18n/ar/docusaurus-plugin-content-docs/current/guides/angular.mdx
github-actions[bot] a4428022ec
docs: sync translations (#3543)
* docs: sync translations

* Fix build

---------

Co-authored-by: leaanthony <leaanthony@users.noreply.github.com>
Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
2024-06-22 14:07:04 +10:00

14 lines
385 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",
```