mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
import { env } from '@/env'
|
|
import { notFound } from '@/next/navigation'
|
|
|
|
export const guardAgentV2Route = () => {
|
|
if (!env.NEXT_PUBLIC_ENABLE_AGENT_V2) notFound()
|
|
}
|