better anti devtools; disable sourcemaps

This commit is contained in:
Vendicated 2022-09-07 15:38:50 +02:00
parent 96fed019b8
commit a72dedb9aa
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
2 changed files with 9 additions and 5 deletions

View file

@ -115,7 +115,7 @@ await Promise.all([
globPlugins,
gitHashPlugin
],
sourcemap: "inline",
sourcemap: false,
watch,
minify: false,
})

View file

@ -2,9 +2,13 @@ import definePlugin from "../utils/types";
export default definePlugin({
name: "STFU",
description: "Disabled the fat warning in the DevTools console",
description: "Disables the 'HOLD UP' banner in the console",
author: "Vendicated",
start() {
window.DiscordNative.window.setDevtoolsCallbacks(null, null);
}
patches: [{
find: "setDevtoolsCallbacks",
replacement: {
match: /\.default=function.+$/s,
replace: ".default=function(){}}"
}
}]
});