>>451
Windows7上のXampでローカルChromeでは表示されるけどネット越しのWindows10のChromeではダメかも

間に挟んで試してみて
<script>
var a;
let url = './a.json';
fetch(url)
.then(response => response.json())
.then(data => {
a=data;
 document.write( JSON.stringify( a ) );
});
</script>