Put this as an answer with more details so others can see.
The wwwroot
folder in the application is the root of the static, served files. This way wwwroot
not displayed in the urls. Take a look at the project.json
file to see where this comes into play:
{ ... "webroot": "wwwroot", ... }
This tells ASP.NET vNext that static files ("webroot") are in the wwwroot
subdirectory. This is the default location where static file middleware will return files.
Eilon source share