I am publishing my Aurelia project in Azure from VS Code without problems but I don't know how to publish it in an IIS
regards
1.open command prompt as administrator.
2.enter to the Aurelia project folder.
3.run au build --env prod
command to build project.
4.this command will generate a dist folder under the project folder.
5.now open iis.
6.right click on the server name and select add website.
7.feel the detail like site name, port number, and the path.
note: select the dist folder as a website path.
8.after creating site. select site name then click on browse from the cation pane.
refer this article for more detail:
https://discourse.aurelia.io/t/publish-aurelia-project-with-visual-studio-2017/2944
I have execute au build --watch and I have copied and pasted the files generated in the wwwroot folder (in my case) inside the folder of my IIS web site and all works fine
Thanks