Help

Re: Is there a "env" variable to know if the block is running in PROD or DEV mode?

753 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Ashwin_P
6 - Interface Innovator
6 - Interface Innovator

Basically I want to know if the current env is an installed custom block or a local development environment?

2 Replies 2
Billy_Littlefie
7 - App Architect
7 - App Architect

Hey @Ashwin_P

You can use process.env.NODE_ENV to check the environment. The value will be set to development during local development (block run), and production for released blocks.

That’s great, Thank you.