Variable BEETPX__IS_PRODConst Not Exported

BEETPX__IS_PROD: boolean

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).

$x.start({
// ...,
requireConfirmationOnTabClose: BEETPX__IS_PROD,
debugMode: {
available: !BEETPX__IS_PROD,
},
frameByFrame: {
available: !BEETPX__VERSION,
},
});