mirror of
https://github.com/langgenius/dify.git
synced 2026-07-26 14:18:35 +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()
|
|
}
|