After installation on IIS, pages are not processed

Hello
The application works fine in Visual Studio.
After installation on IIS, pages are not processed.
I have installed the required components.
Other Blazor apps work fine.

App in Visual Studio:


App in IIS:

regards
maciej

Hi @Maciej,

The only thing I see from your screenshot is that the CSS files are not loading. Use your browser developer tools to see why they fail to load.

Hi
In App.razor file I changed
base href="/" /
to
base href="/SoldevaKP/" /

now works with IIS and doesn't work with Visual Studio :slight_smile:

Thanks
Maciej

The href should be:

<base href="@NavigationManager.BaseUri" />

It works, thanks !

greetings
Maciej