feat: introduce new env ALLOW_UNSAFE_DATA_SCHEME to allow rendering data uri scheme (#21321)
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
* Includes preprocessing for LaTeX and custom "think" tags.
|
||||
*/
|
||||
import { flow } from 'lodash-es'
|
||||
import { ALLOW_UNSAFE_DATA_SCHEME } from '@/config'
|
||||
|
||||
export const preprocessLaTeX = (content: string) => {
|
||||
if (typeof content !== 'string')
|
||||
@@ -86,5 +87,8 @@ export const customUrlTransform = (uri: string): string | undefined => {
|
||||
if (PERMITTED_SCHEME_REGEX.test(scheme))
|
||||
return uri
|
||||
|
||||
if (ALLOW_UNSAFE_DATA_SCHEME && scheme === 'data:')
|
||||
return uri
|
||||
|
||||
return undefined
|
||||
}
|
||||
|
Reference in New Issue
Block a user