Recently we attempted to advertise our website via google ads. However, we got a reply regarding "malicious links" that should be removed from our website. Said files (.js) are, in fact, just chucks of the NextJs build located under /_next/static/chucks/.
Has anyone experienced this issue before? I assume that their crawler labeled these .js chunks as malicious for some reason, but many of the files they linked are simply small chunks containing a single line of code.
Here is an example of such a (one-liner) file:
(window.webpackJsonp_N_E=window.webpackJsonp_N_E||[]).push([[10],[]]);
Obviously, deleting these files would cause the website to cease working. We explained as much but they told us that there was nothing that could be done unless we delete these files.
Am I missing something obvious here?