Я изменил свой базовый href в index.html
: было href="/"
стало href="/schedule/"
Также я меняю Configure
:
app.UseStaticFiles();
app.UseStaticFiles(new StaticFileOptions()
{
FileProvider = new PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(),@"Schedule.Client", @"dist")),
RequestPath = new PathString("/schedule")
});
Здесь находятся мои файлы
CSS, JS, ресурсы работают хорошо, но _framework, который включает файлы wasm и не работает правильно.
index.html:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width">
<title>Schedule</title>
<link rel="icon" href="css/Resources/icon_title.png" />
<base href="/schedule/" />
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" crossorigin="anonymous">
<link href="css/site.css" rel="stylesheet" />
<link href="css/btnstyle.css" rel="stylesheet" />
<script src="js/SetScroll.js"></script>
</head>
<body>
<app>
<div id="demo" style="margin:auto; top:30px;">
<img src="css/Resources/logo-fin.png" />
<div class="circle fas fa-spinner"></div>
</div>
</app>
<script src="_framework/blazor.webassembly.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.2.0/js/all.js" crossorigin="anonymous"></script>
</body>
</html>
Когда я запускаю свое приложение, я получаю сообщение об ошибке
Когда я использую href="/"
, все правильно
Что может быть не так?
Спасибо!
Обновление
Я нашел ту же проблему и решение, но там используется интерфейс командной строки Azure:
https://anthonychu.ca/post/blazor-azure-storage-static-websites/