Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

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

Topic Labels: Custom Extensions
2374 2
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.