tauri-plugin-devtools-app 2.1.4

Connect with the Devtools for Tauri application
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>CrabNebula DevTools</title>
    <style>
      .background-container {
        z-index: -10;
        position: absolute;
        inset: 0px;
        opacity: 0.5;
        overflow: hidden;
      }

      .background {
        width: 100%;
        height: 100%;
      }
    </style>
    <script type="module" crossorigin src="/index.js"></script>
    <link rel="stylesheet" crossorigin href="/assets/index.css">
  </head>

  <body class="bg-[#070c17] text-white">
    <div
      id="app"
      class="grid bg-navy-700 bg-opacity-70 grid-rows-[var(--header-height),calc(100vh-calc(var(--header-height)+var(--footer-height))),var(--footer-height)] h-screen"
    ></div>
    <div class="background-container">
      <img class="background" src="/bg.webp" aria-hidden />
    </div>
    <!-- this one is handled by Vite. No need for subpath-->
  </body>
</html>