如何发布没有不需要的文件的 Blazor WebAssembly 应用程序?

问题描述 投票:0回答:1

我想使用文件系统和 CPanel 发布我的 Blazor WebAssembly 应用程序,但不确定步骤和设置。我正在使用文件系统方法

enter image description here

我应该在此处选择哪些设置? enter image description here

另外,我已经发布了此内容并收到了这些文件

enter image description here

如何在没有 .br 和 .gz 文件扩展名的情况下发布?

asp.net cpanel publish blazor-webassembly
1个回答
0
投票
dotnet publish -p:CompressionEnabled=false

<PropertyGroup>
  <CompressionEnabled>false</CompressionEnabled>
</PropertyGroup>

参考

© www.soinside.com 2019 - 2024. All rights reserved.