Hi @Haneen Al-fakhry,
I have test it in my local, I know you can't find it in browser developer tools. But the javascript files has been loaded successfully, you can test in browser window.
If you want check the files in browser developer tools, we need include the js
when debugging/deploying. Like below:
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.11" PrivateAssets="all" />
<!--// add this line-->
<Content Include="js/*.js" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>
Then we can find all the js files.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best regards,
Jason