I often use Deploy Preview to test the performance of a new feature on page load time. The Deploy Preview Review feature, while very cool, totally screws this up. Is there some way to turn it off?
Hi there, @carlana
Thanks for reaching out. Are you referencing the new Collaborative Deploy Preview feature? If so, you can read more about usability improvements here:
As for disabling the feature, it is not available yet but it is in the works. You can read the post from one of our Product Managers below. It is the third to last post on the following thread:
So, from reading those links, it turns out that the permalink URL doesn’t have the collaborative deploy preview JS, so I can do performance testing against that URL. Thanks!
Awesome, so glad those were helpful for you!
Edit you can disable this in site settings!
FWIW: who knows when Netlify will allow this, so I finally just stuck a snippet of CSS in my project.
I really wanted that sticky footer gone from the deploy preview URL so I put this line of CSS in my project:
iframe[src^='https://app.netlify.com'] { display: none }
Hi @jimniels ,
Thanks for sharing that information.