Is there any way I can remove the <script id="gatsby-chunk-mapping"></script>? #33036
Unanswered
cristianCeamatuAssist
asked this question in
Help
Replies: 1 comment
-
I think you can use var chunk = window.document.getElementById("gatsby-chunk-mapping");
if (chunk) {
chunk.parentNode.removeChild(chunk);
} On server side you might be able to use a function from |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello! I need to remove the
<script id="gatsby-chunk-mapping"></script>
script because it is affecting the CRP (SEO critical render path) on a website with hundreds of pages, it is an inline script that needs to be parsed before rendering the rest of the page so .Is there any way I can do that?
Beta Was this translation helpful? Give feedback.
All reactions