You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think you need "type": "module" in your package.json.
When I import from a project that is setup this way, like this:
importfetchProgressfrom'fetch-progress'
I get this:
/Users/konsumer/Desktop/videoexample/node_modules/fetch-progress/index.js:1
import Progress from './Progress';
^^^^^^
SyntaxError: Cannot use import statement outside a module
The text was updated successfully, but these errors were encountered:
I think you need "type": "module" in your package.json.
When I import from a project that is setup this way, like this:
importfetchProgressfrom'fetch-progress'
I get this:
/Users/konsumer/Desktop/videoexample/node_modules/fetch-progress/index.js:1
import Progress from './Progress';
^^^^^^
SyntaxError: Cannot use import statement outside a module
I think you need
"type": "module"
in your package.json.When I import from a project that is setup this way, like this:
I get this:
The text was updated successfully, but these errors were encountered: