0

我在 Blazor Web 程序集中有一个现有网站,它可以与 Azure 商店帐户(Azure 存储静态网站)一起正常工作。

同一个应用程序,我通过 GitHub 工作流操作部署在 Azure 静态 WebApp 中,但它不工作。

我可以在浏览器控制台窗口中看到以下错误。

在此处输入图像描述

只有 _content 和 _framework 文件夹下的 Javascript 文件无法加载。我在 Azure 静态 WebApp 中看不到任何选项来验证这些文件是否成功部署。

更新

Visual Studio 2019 默认模板应用程序,默认 github 工作流正常工作,但我不能使用默认工作流文件,所以我尝试根据我的文件夹结构进行更改,下面是我的项目结构

根/MyApp/MyApp.csproj

根/MyAPI/MyAPI.csproj

4

1 回答 1

0

Azure Static Web Apps are currently in preview and support JavaScript and TypeScript front-end apps including those developed with popular frameworks like Vue.js, React, Angular and more.

Since it uses Github actions to deploy the application we just need to modify the workflow file generated by azure static web app to deploy our Blazor Application.

you can refer the article to deploy Blazor WASM app: https://www.maneu.net/blog/2020-05-deploy-blazor-client-apps-with-azure-static-apps/

于 2020-08-27T19:00:52.393 回答