``refactor Add explicit type annotation to isDevelopment variable in check-is-development utility function``

This commit is contained in:
2025-05-16 11:03:05 +08:00
parent 11b1d21472
commit 4b750b8146

View File

@@ -1,2 +1,2 @@
const isDevelopment = process.env.NEXT_PUBLIC_ENVIRONMENT === 'development'; const isDevelopment: boolean = process.env.NEXT_PUBLIC_ENVIRONMENT === 'development';
export default isDevelopment; export default isDevelopment;