index.html 1.0 KB

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>四川路桥Maas算力平台 - 管理控制台</title>
  8. <link rel="preconnect" href="https://fonts.googleapis.com">
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10. <link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Fira+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  11. <script>
  12. // OAuth2 SSO 回调重定向:将 /sso-callback?code=xxx 转为 hash 路由
  13. (function() {
  14. var path = window.location.pathname;
  15. var search = window.location.search;
  16. if (path === '/sso-callback' && search) {
  17. window.location.replace('/#/sso-callback' + search);
  18. }
  19. })();
  20. </script>
  21. </head>
  22. <body>
  23. <div id="root"></div>
  24. <script type="module" src="/src/main.tsx"></script>
  25. </body>
  26. </html>