// Blazor Server Integration Script document.addEventListener('DOMContentLoaded', function() { // Check if we're on a page that should use Blazor const blazorContainers = document.querySelectorAll('[data-blazor-component]'); if (blazorContainers.length > 0 || window.location.pathname.includes('/Admin/Products/Blazor')) { // Start Blazor Blazor.start(); } }); // Helper function to navigate to Blazor components from MVC window.navigateToBlazor = function(componentPath) { window.location.href = '/blazor#' + componentPath; };