Fix MSAL CDN in analytics.html — use jsdelivr to match index.html

alcdn.msauth.net was failing to expose the msal global, causing
"msal is not defined" on auth init.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vadym Samoilenko 2026-03-17 16:17:13 +00:00
parent 8843af6402
commit 96134f3c13

View file

@ -18,7 +18,7 @@
}
</script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4"></script>
<script src="https://alcdn.msauth.net/browser/2.38.3/js/msal-browser.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@azure/msal-browser@2.38.3/lib/msal-browser.min.js"></script>
<style>
.card { @apply bg-white dark:bg-gray-800 rounded-xl border border-gray-200 dark:border-gray-700 p-5 }
.stat-value { @apply text-3xl font-bold }