unfortunately, you can't clear the console without this hardcoded message. alternatively, you can try a way to print a seperator instead of clearing the console with this (annoying) message, like this:
window.onload = function() {
setTimeout(() => { console.log('DEV STARTED') }, 50);
}
if you're using nodejs or something like react, try using patch-package.
happy coding :)