From 4cd89e1507bf7d4e8baff72c0292e49e47aa2111 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sat, 29 Oct 2022 19:33:20 +1100 Subject: [PATCH] Add Angular docs --- website/docs/guides/angular.mdx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 website/docs/guides/angular.mdx diff --git a/website/docs/guides/angular.mdx b/website/docs/guides/angular.mdx new file mode 100644 index 000000000..92eec68d5 --- /dev/null +++ b/website/docs/guides/angular.mdx @@ -0,0 +1,14 @@ +# 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", +``` \ No newline at end of file