I have suddenly started having a problem which I didn't have before.
I do the following steps:
mkdir someapp cd someapp npx create-react-app .
Till this stage everything is fine. My next command to start the app is:
npm start
The react app opens normally in the browser.
However, when I check the console, I see the following three errors showing:
GET chrome-extension://gomekmidlodglbbmalcneegieacbdmki/locales/Locale-en-US.json net::ERR_FILE_NOT_FOUND
Access to fetch at 'https://s-install.avcdn.net/aos/assets/prod/translations/Locale-en-US.json' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
GET https://s-install.avcdn.net/aos/assets/prod/translations/Locale-en-US.json net::ERR_FAILED 404
I reiterate that I have nothing installed other than the vanilla react app.
Can someone please help and advise how I clear these errors. The app I develop runs fine but I am afraid when this might explode into a bigger problem later.
Thanks, Teejay