Const
Not Exported
A constant injected into global namespace during the build process. Indicates whether the build is meant to be used for production deployment (when run with beetpx build) or for development purposes (when run with beetpx dev).
beetpx build
beetpx dev
$x.start({ // ..., requireConfirmationOnTabClose: BEETPX__IS_PROD, debugMode: { available: !BEETPX__IS_PROD, }, frameByFrame: { available: !BEETPX__VERSION, },}); Copy
$x.start({ // ..., requireConfirmationOnTabClose: BEETPX__IS_PROD, debugMode: { available: !BEETPX__IS_PROD, }, frameByFrame: { available: !BEETPX__VERSION, },});
A constant injected into global namespace during the build process. Indicates whether the build is meant to be used for production deployment (when run with
beetpx build
) or for development purposes (when run withbeetpx dev
).