error message I am trying to access a local .json file using fetch() like
fetch('fakedata.json')
.then((res) => res.json())
.then((data) => {
console.log('data:', data);
})
But when i saw in the network it is showing
You need to enable javascript to run this app
I check in some other pages but i cant fix this issue. How to fix this issue