mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-24 03:56:41 +02:00
🔥 chore(picture): remove PostHog analytics for GDPR compliance
- Remove posthog-js dependency from picture web app - Delete PostHog integration module and setup documentation - Remove PostHog initialization from root layout - Clean up environment variables from .env.example - Update logger comments to remove Sentry references - Update PROJECT_OVERVIEW.md to reflect Umami as analytics tool
This commit is contained in:
parent
13754f2d55
commit
cb130191ab
10 changed files with 2176 additions and 1778 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* Centralized logging utility
|
||||
* - Development: Logs to console
|
||||
* - Production: Can be integrated with Sentry, LogRocket, etc.
|
||||
* - Production: Logs to console (can be extended for custom error tracking)
|
||||
*/
|
||||
|
||||
const isDevelopment = __DEV__;
|
||||
|
|
@ -38,7 +38,7 @@ export const logger = {
|
|||
*/
|
||||
error: (...args: any[]) => {
|
||||
console.error('[ERROR]', ...args);
|
||||
// TODO: Send to error tracking service (Sentry, etc.)
|
||||
// In production: can be extended for custom error tracking
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue