mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 23:58:06 +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';
|
||
|
}
|