Files
newToy/index.html
2025-11-23 23:55:10 +08:00

22 lines
683 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>newtoy</title>
<!-- 预先定义 Spotify SDK 回调,防止 SDK 加载时报错 -->
<script>
window.onSpotifyWebPlaybackSDKReady = function() {
console.log('Spotify Web Playback SDK 已加载');
};
</script>
<!-- Spotify Web Playback SDK -->
<script src="https://sdk.scdn.co/spotify-player.js"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>