Nate I tried the F12 key but didn't find any abnormal requests.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script src="https://unpkg.com/@esotericsoftware/spine-player@4.0.*/dist/iife/spine-player.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@esotericsoftware/spine-player@4.0.*/dist/spine-player.css">
<div id="player-container" style="width: 100%; height: 100%;"></div>
<script>
new spine.SpinePlayer("player-container", {
jsonUrl: "http://esotericsoftware.com/files/examples/4.0/mix-and-match/export/mix-and-match-pro.json",
atlasUrl: "http://esotericsoftware.com/files/examples/4.0/mix-and-match/export/mix-and-match.atlas",
animation: "walk",
showControls: true,
alpha: true,
backgroundColor: "#21252b",
premultipliedAlpha: false
});
</script>
</body>
</html>