[Blazor] Enable site wide server side rendering.

This commit is contained in:
2025-07-27 03:30:32 +01:00
parent a2fc47cc5b
commit 122e397d0a

View File

@@ -9,11 +9,11 @@
<link href="@Assets["RomRepoMgr.Blazor.styles.css"]" rel="stylesheet"/> <link href="@Assets["RomRepoMgr.Blazor.styles.css"]" rel="stylesheet"/>
<ImportMap/> <ImportMap/>
<link href="favicon.ico" rel="icon" type="image/x-icon"/> <link href="favicon.ico" rel="icon" type="image/x-icon"/>
<HeadOutlet/> <HeadOutlet @rendermode="InteractiveServer"/>
</head> </head>
<body> <body>
<Routes/> <Routes @rendermode="InteractiveServer"/>
<script src="_framework/blazor.web.js"></script> <script src="_framework/blazor.web.js"></script>
</body> </body>