bunext/dist/utils/is-development.js
2026-03-18 17:37:24 +01:00

11 lines
229 B
JavaScript

export default function isDevelopment() {
const config = global.CONFIG;
if (process.env.NODE_ENV == "production") {
return false;
}
if (config.development) {
return true;
}
return false;
}