mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-10 04:30:25 +02:00
4 lines
147 B
TypeScript
4 lines
147 B
TypeScript
export const isAnalyticsDisabled = () => {
|
|
return localStorage.getItem('umami.disabled') === '1' || process.env.NODE_ENV === 'development';
|
|
};
|