-
Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.Hi Describe the solution you'd likeIs there any other way to publish on WebAssembly mode without using api project? Additional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi there, Thanks for reporting the issue. We're currently using To address your issue, I recommend moving your existing API code to the project template's API project. Another option is to use your existing API's address in the We do not currently have plans to support Blazor WebAssembly with an |
Beta Was this translation helpful? Give feedback.
Hi there,
Thanks for reporting the issue.
We're currently using
_Layout.cshtml
andasp-append-version=true
to make CSS and JS files http cache as efficient as possible, and also to make prerendering possible.To address your issue, I recommend moving your existing API code to the project template's API project.
This is a simple API project that you can customize to your needs. By doing this, you can publish a single project.
Another option is to use your existing API's address in the
src/Client/Core/appsettings.json
file. This will require you to publish two projects, but you can reduce the size of the published output by removing unused NuGet packages, such asHealtCheck
.We do not curre…