Registering Javascript file Blazor

I have a scenario where I want to register a javascript file insidemy blazor appplication.

Any suggestion how we can fix this issue. Any help is appreciated.

Thank you in advance.

I have placed the file as shown in the below image
enter image description here

I have used the script tag inside one of the razor component as shown below.
enter image description here

But I am getting the below error when I am using script tag to register Javascript.
enter image description here

While using JSRuntime am not getting any error by the javascript is not executing and is also not present while checking the page source.

I have also tried to place the script tag in the App.Razor a file where _blazor.web.js file is present. Again not getting the error but the JS file is not executing but it is present while viewing the page source.

If I remove the _blazor.web.js then the javascript file runs fine but blazor application is not working as it blazor.web.js is required other components.