While importing Axios I am facing an error
Uncaught SyntaxError: Cannot use import statement outside a module
I am importing Axios like this:
import axios from 'axios'
this is how i import axios in main js file that is shown above
While importing Axios I am facing an error
Uncaught SyntaxError: Cannot use import statement outside a module
I am importing Axios like this:
import axios from 'axios'
this is how i import axios in main js file that is shown above
const axios = require('axios').default;
- Nnay