-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.razor
34 lines (29 loc) · 1.08 KB
/
App.razor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@inject AppConfig appConfig
<!DOCTYPE html>
<html lang="en">
<head>
<ImportMap />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
@if (appConfig.EnvironmentName == "production")
{
<base href="/blazor/" />
}
else
{
<base href="/" />
}
<link href="css/bootstrap-4.1.3-dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="LeaderPivot.BlazorDemo.Server.styles.css" rel="stylesheet" />
<link href="_content/LeaderAnalytics.LeaderPivot.Blazor/leader-pivot.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
<link rel="icon" type="image/png" href="favicon.png" />
<HeadOutlet @rendermode="InteractiveServer" />
</head>
<body>
<Routes @rendermode="InteractiveServer" />
<script src="_framework/blazor.web.js"></script>
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
</body>
</html>