mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('posthog', () => ({
|
|
apiKey: process.env.POSTHOG_API_KEY,
|
|
host: process.env.POSTHOG_HOST || 'https://us.i.posthog.com',
|
|
}));
|