Open krankos opened 1 year ago
This library was no longer working with Vite 5, I worked around it by replacing the node-fetch
dependency by axios
using a vite alias:
// vite.config.js
export default defineConfig({
resolve: {
alias: {
'node-fetch': 'axios',
},
},
})
this has been the cause of many issues