DEV Community

Discussion on: 5 things learned from launching my first app and getting my first 20 users

Collapse
 
alexanderjanke profile image
Alex Janke

Even if you use a different tool you still have to show a notification. Let me phrase it in pseudo-code:
if (dataCollection.enabled) displayCookieBanner()

You got 3 options:

  • Display the banner, link to your policy and explain what data you collect
  • Reject access to all users from the EU
  • Don't collect any data

I know it's annoying as hell to implement that over and over again but unfortunately, it's required.