Is it possible in my project settings in the web application settings to only enforce password protection for people who are not members of the vercel team, i…e - you can get access to my protected site either by password protection OR by logging in to vercel if you are a team member?
I would preferably want to do this quickly in the web app without needing to code.
Hello and welcome, @laura-hai! It sounds like Vercel Authentication and Sharable Links would do what you need. That way only team members could access preview deployments and you can selectively share with others who need to be able to view previews.
Vercel Authentication lets you restrict access to your public and non-public deployments. It is the recommended approach to protecting your deployments, and available on all plans. When enabled, it allows only users with deployment access to view and comment on your site.
Shareable links provide a way to allow external users to access your branch-specific deployments through a secure parameter in the query string. Users with this link can view the latest deployment from a specific branch. Sharable links include the ability to leave Comments on deployments which have them enabled.
Please give that a try and let me know how it works for you!