1
0

Add comment regarding render mode on Routes component in App.razor file.

This commit is contained in:
Kevin Matsubara 2025-03-25 12:27:52 +01:00
parent 64c2be5028
commit 23300842c9

View File

@ -13,7 +13,8 @@
</head> </head>
<body> <body>
<Routes /> @* Note that @rendermode="InteractiveServer" can be used here on Routes to make it global. But this is not recommended by Microsoft. See: https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-modes?view=aspnetcore-9.0 *@
<Routes/>
<script src="_framework/blazor.web.js"></script> <script src="_framework/blazor.web.js"></script>
</body> </body>