Flows / EU Region

EU Region

Pin widget reads and writes to the EU datacenter to satisfy data-residency requirements. A single region="eu" flag routes everything through the EU cluster.

Region · EUGDPR-friendly
app/eu/page.tsx
'use client';

import { FastComments } from 'fastcomments-nextjs';

export default function EUPage() {
  return (
    <FastComments
      tenantId="demo"
      region="eu"
      urlId="nextjs-demo-eu"
    />
  );
}