import DisableDevtool from 'disable-devtool';
/**
* 安全警告的HTML模板
* 现代风格的警告提示,压缩优化版本
*/
const SECURITY_WARNING_TEMPLATE = `
不合规操作,系统将自动关闭退出!
如您频繁此类操作,系统将记录上报。
`;
/**
* 初始化反调试功能,
* 通过ddtk 参数来控制绕过反调试功能,
* http://localhost/?ddtk=pig#/flow/task/started
*/
export function initAntiDebug(): void {
if (import.meta.env.VITE_ENABLE_ANTI_DEBUG !== 'true') {
return;
}
const debugKey = import.meta.env.VITE_ANTI_DEBUG_KEY || 'pig';
DisableDevtool({
md5: DisableDevtool.md5(debugKey),
disableMenu: false,
rewriteHTML: SECURITY_WARNING_TEMPLATE,
});
}