I have a Blazor WASM app using the Google Map API. Everything it working as it should but the Google Map API is exposed in the wwwroot\Index.html per instructions. I am looking to move it out of the index.html but I am unclear as to were I should set the key.
<-- Index.html -->
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<base href="/" />
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="css/app.css" rel="stylesheet" />
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=<My Google API Key>=initMap"></script>```