Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.html 707B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  6. <title>NemAnCore</title>
  7. <base href="/" />
  8. <link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
  9. <link href="css/app.css" rel="stylesheet" />
  10. <link href="NemAnBlazor.styles.css" rel="stylesheet" />
  11. </head>
  12. <body>
  13. <div id="app">Loading...</div>
  14. <div id="blazor-error-ui">
  15. An unhandled error has occurred.
  16. <a href="" class="reload">Reload</a>
  17. <a class="dismiss">🗙</a>
  18. </div>
  19. <script src="_framework/blazor.webassembly.js"></script>
  20. </body>
  21. </html>