Use helpers to check environment in frontend (#27633)
This commit is contained in:
parent
7ef56d6e50
commit
277e6968f5
8 changed files with 28 additions and 9 deletions
7
app/javascript/mastodon/utils/environment.ts
Normal file
7
app/javascript/mastodon/utils/environment.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
export function isDevelopment() {
|
||||
return process.env.NODE_ENV === 'development';
|
||||
}
|
||||
|
||||
export function isProduction() {
|
||||
return process.env.NODE_ENV === 'production';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue