mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-29 14:53:41 +01:00
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
|
export function isDevelopment() {
|
||
|
return process.env.NODE_ENV === 'development';
|
||
|
}
|
||
|
|
||
|
export function isProduction() {
|
||
|
return process.env.NODE_ENV === 'production';
|
||
|
}
|