mirror of
https://github.com/langgenius/dify.git
synced 2025-07-27 19:40:08 +00:00
8 lines
292 B
TypeScript
8 lines
292 B
TypeScript
import { ALLOW_UNSAFE_DATA_SCHEME } from '@/config'
|
|
|
|
export const isValidUrl = (url: string): boolean => {
|
|
const validPrefixes = ['http:', 'https:', '//', 'mailto:']
|
|
if (ALLOW_UNSAFE_DATA_SCHEME) validPrefixes.push('data:')
|
|
return validPrefixes.some(prefix => url.startsWith(prefix))
|
|
}
|