IIS本地网站。无法加载.js文件

时间:2017-03-21 10:55:48

标签: asp.net angularjs iis .net-core

我使用angular 2 cli和.net核心应用程序创建了一个简单的应用程序,当我使用visual studio运行它时,它非常有效。当我发布网站并尝试使用IIS时,发生以下错误: enter image description here

This is what the files look like in wwwroot directory but they are not loaded

enter image description here

可能出现的问题是什么? 感谢。

1 个答案:

答案 0 :(得分:1)

确保将中间件UseStaticFiles添加到startup.cs。这允许wwwroot文件夹中的文件可以使用。

public void Configure(IApplicationBuilder app)
{
    app.UseStaticFiles();
}