I created a new .NET 8.0 Blazor application in Visual Studio by following these steps:
1- Create a new project via the “Blazor Web App” template.
2- Select “Blazor Web Assembly” as the renderer.
The new project consists of client and server projects. I created a new JavaScript file under the wwwroot folder of the client project and want to call the JS file in the index.html. However, there is no index.html file in the client project; there is only an App.razor file in the server project. How can I add the JS file to the client project?