We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91bb144 commit efd64eeCopy full SHA for efd64ee
1 file changed
PocketDDD.BlazorClient/PocketDDD.BlazorClient/wwwroot/index.html
@@ -23,18 +23,23 @@
23
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
24
<script>
25
if (window.location.hostname.includes("localhost") || window.location.hostname.includes("development")) {
26
+ console.info("Env = Development")
27
Blazor.start({
- environment: "Test"
28
+ environment: "Development"
29
});
30
} else if (window.location.hostname.includes("test")) {
31
+ console.info("Env = Test")
32
33
environment: "Test"
34
35
} else {
36
+ console.info("Env = Prod")
37
38
environment: "Production"
39
40
}
41
+
42
43
</script>
44
45
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
0 commit comments