am-editor11212/examples/react/config.ts

10 lines
215 B
TypeScript
Raw Normal View History

2021-11-03 19:58:08 +08:00
import { isServer } from '@aomao/engine';
export const IS_DEV = process.env.NODE_ENV !== 'production';
export const lang = (
!isServer ? window.location.href.indexOf('zh-CN') > 0 : false
)
? 'zh-CN'
: 'en-US';