···5656- `VITE_STOAT_CDN_URL`
57575858The app will use those values at build time, while still allowing manual overrides from **Advanced connection settings** on the login screen.
5959+6060+## Privacy and GDPR direction
6161+6262+- Ermine stores session details in browser cookies (`ermine_session_token`, `ermine_user_id`, `ermine_api_url`) for authentication continuity.
6363+- Ermine does not persist personal user data on Ermine repositories or Ermine-hosted servers.
6464+- Network communication is limited to configured official stoat.chat endpoints.
6565+- See `privacy-policy.html` for the user-facing privacy notice.
+42
privacy-policy.html
···11+<!doctype html>
22+<html lang="en">
33+ <head>
44+ <meta charset="UTF-8" />
55+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
66+ <title>Ermine Privacy Policy</title>
77+ <style>
88+ body { background:#1e1f22; color:#f2f3f5; font-family: Inter, system-ui, sans-serif; margin:0; }
99+ main { max-width: 760px; margin: 0 auto; padding: 48px 20px; }
1010+ h1,h2 { color:#fff; }
1111+ section { background:#2b2d31; border:1px solid #202225; border-radius:12px; padding:20px; margin-top:16px; }
1212+ a { color:#8ea1ff; }
1313+ p,li { color:#c8cbd1; line-height:1.5; }
1414+ </style>
1515+ </head>
1616+ <body>
1717+ <main>
1818+ <h1>Ermine Privacy Policy</h1>
1919+ <p>Last updated: 2026-02-14</p>
2020+2121+ <section>
2222+ <h2>What Ermine stores</h2>
2323+ <p>Ermine stores your session token, user ID, and selected API URL in browser cookies so you can stay signed in.</p>
2424+ </section>
2525+2626+ <section>
2727+ <h2>What Ermine does not store</h2>
2828+ <p>Ermine does not store your personal chat data, profile content, or server data on Ermine repositories or Ermine-operated servers.</p>
2929+ </section>
3030+3131+ <section>
3232+ <h2>Service endpoints</h2>
3333+ <p>Ermine communicates with official stoat.chat services (API, websocket, and CDN endpoints configured in the app).</p>
3434+ </section>
3535+3636+ <section>
3737+ <h2>Contact</h2>
3838+ <p>If you have privacy questions, contact the Ermine maintainers through the project repository.</p>
3939+ </section>
4040+ </main>
4141+ </body>
4242+</html>