mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
import { env } from "next-runtime-env"
|
|
|
|
export default function getEnv(key: string) {
|
|
if (key.startsWith("NEXT_PUBLIC_")) {
|
|
return env(key)
|
|
}
|
|
return process.env[key]
|
|
}
|