Outiref
<!DOCTYPE html>
<html>
  <head>
    <!--
    If you are serving your web app in a path other than the root, change the
    href value below to reflect the base path you are serving from.

    The path provided below has to start and end with a slash "/" in order for
    it to work correctly.

    For more details:
    * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base

    This is a placeholder for base href that will be replaced by the value of
    the `--base-href` argument provided to `flutter build`.
  -->
    <base href="/" />

    <meta charset="UTF-8" />
    <meta content="IE=Edge" http-equiv="X-UA-Compatible" />
    <meta name="description" content="Mon Chasseur Immo - Espace client" />

    <!-- iOS meta tags & icons -->
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
    <meta name="apple-mobile-web-app-title" content="customer_mobile_app" />
    <link rel="apple-touch-icon" href="icons/Icon-192.png" />
    <link rel="icon" type="image/png" href="favicon.png" />
    <link rel="icon" href="favicon.svg" type="image/svg+xml" />

    <title>Mon Chasseur Immo</title>
    <link rel="manifest" href="manifest.json" />
    <script
      type="text/javascript"
      src="https://alcdn.msauth.net/browser/2.31.0/js/msal-browser.min.js"
      integrity="sha384-1vMI1nswvByekU8FrM4tFu+iue2XqjisDCQmalPH2vWX53szbpaLAQA/rI1p9mjz"
      crossorigin="anonymous"
    ></script>
    <script
      type="text/javascript"
      src="assets/msalv2_es5.js?v={{versionNumber}}"
    ></script>

    <script async type="text/javascript">
      window["uselessYetMandatory"] = function () {};
    </script>

    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBIjtquVKqv9IfJatvbj_A6iIpWI8QEK9Y&loading=async"></script>

    <style>
      /* HACK: Some items are blurry on Flutter web
      See : https://github.com/flutter/flutter/issues/58159
    body {
      image-rendering: pixelated;
    }
     */

      /* HACK: Render of InfoWindow of the markers on google map are taking strange css
       See : https://github.com/flutter/flutter/issues/115216
    */
      flt-platform-view {
        all: initial;
        cursor: inherit;
      }

      /* Loading page */
      body {
        overflow: hidden;
        background-color: #00385e;
      }
      .loading-container {
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      @keyframes flickerAnimation {
        0% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
        100% {
          opacity: 1;
        }
      }
      @-o-keyframes flickerAnimation {
        0% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
        100% {
          opacity: 1;
        }
      }
      @-moz-keyframes flickerAnimation {
        0% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
        100% {
          opacity: 1;
        }
      }
      @-webkit-keyframes flickerAnimation {
        0% {
          opacity: 1;
        }
        50% {
          opacity: 0;
        }
        100% {
          opacity: 1;
        }
      }
      .animate-flicker {
        width: 90px;
        height: 90px;
        -webkit-animation: flickerAnimation 1s infinite;
        -moz-animation: flickerAnimation 1s infinite;
        -o-animation: flickerAnimation 1s infinite;
        animation: flickerAnimation 1s infinite;
      }
    </style>
  </head>
  <body>
    <div class="loading-container">
      <img class="animate-flicker" src="./icons/Icon-512.png" />
    </div>
    <script src="flutter_bootstrap.js" async></script>
  </body>
</html>