mirror of
https://github.com/langgenius/dify.git
synced 2026-03-04 23:36:20 +08:00
16 lines
292 B
TypeScript
16 lines
292 B
TypeScript
import Script from 'next/script'
|
|
import { IS_DEV } from '@/config'
|
|
|
|
export function ReactScanLoader() {
|
|
if (!IS_DEV)
|
|
return null
|
|
|
|
return (
|
|
<Script
|
|
src="//unpkg.com/react-scan/dist/auto.global.js"
|
|
crossOrigin="anonymous"
|
|
strategy="beforeInteractive"
|
|
/>
|
|
)
|
|
}
|