I need use axios inside a webworker defined in js file.
This is a Hello World CLI project in vue3, with only axios installed (npm install axios)
This work fine, but when i uncomment import axios from "axios" in webworker.js I get the following error in the console:
webworker.js:1 Uncaught SyntaxError: Cannot use import statement outside a module
How can i use axios inside a webworker?