Skip to content

Instantly share code, notes, and snippets.

@geongeorge
Created March 1, 2022 16:03
Show Gist options
  • Save geongeorge/66a39724dd17ca1f6a67ecf8e770a7f8 to your computer and use it in GitHub Desktop.
Save geongeorge/66a39724dd17ca1f6a67ecf8e770a7f8 to your computer and use it in GitHub Desktop.
Inject vConsole to view console on mobile
const script = document.createElement('script')
script.onload = function () {
console.log('Loaded vConsole')
var vConsole = new window.VConsole()
}
script.src = 'https://unpkg.com/vconsole@latest/dist/vconsole.min.js'
console.log('Loading vConsole')
document.head.appendChild(script)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment