🐛fix: typo in build type check (#5297)

This commit is contained in:
Louis 2025-06-16 18:45:26 +07:00 committed by GitHub
parent 9b1f206cc6
commit 4181454799
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,4 +2,4 @@ import { isDev } from './utils'
export const isNightly = VERSION.includes('-') export const isNightly = VERSION.includes('-')
export const isBeta = VERSION.includes('beta') export const isBeta = VERSION.includes('beta')
export const isProd = !isNightly && !isBeta && !isDev export const isProd = !isNightly && !isBeta && !isDev()