laatzen/LaaProductionWeb/LaaProductionWeb.Blazor/Components/App.razor
2025-03-17 16:03:24 +01:00

27 lines
891 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<base href="@BASE" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="bootstrap/css/bootstrap.overrides.css" />
<link rel="stylesheet" href="bootstrap/font/bootstrap-icons.min.css" />
<script src="bootstrap/js/bootstrap.bundle.min.js"></script>
<title>Sensus Laatzen</title>
</head>
<body>
<Routes @rendermode="new InteractiveServerRenderMode(false)" />
<script src="_framework/blazor.web.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</body>
</html>
@code {
#if DEBUG
const string BASE = "/";
#else
const string BASE = "/LaaProductionWeb/Blazor/";
#endif
}