You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const debug = process.env.NODE_ENV !== 'production';
|
|
|
|
// 使用NEXT_PUBLIC_前缀的环境变量才能在客户端访问
|
|
export const ssoHost = debug ? process.env.NEXT_PUBLIC_DEV_SERVER_HOST : '';
|
|
export default debug; |