We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
background.bundle.js is stale even if you refresh the chrome extension.
Repro Steps:
console.log('bg 1')
pages/Background/index.js
chrome://extensions
bg 1
console.log('bg 2')
bg 2
Workaround: Remove the extension and load it again
The text was updated successfully, but these errors were encountered:
No branches or pull requests
background.bundle.js is stale even if you refresh the chrome extension.
Repro Steps:
console.log('bg 1')
in the filepages/Background/index.js
chrome://extensions
bg 1
is printed in the background (service worker)'s consolepages/Background/index.js
fromconsole.log('bg 1')
toconsole.log('bg 2')
chrome://extensions
bg 1
is printed in the console whenbg 2
is expectedWorkaround:
Remove the extension and load it again
The text was updated successfully, but these errors were encountered: