Airtable / airtable.js

Airtable javascript client
MIT License
2k stars 404 forks source link

Upgrade node-fetch #381

Open krankos opened 1 year ago

krankos commented 1 year ago

this has been the cause of many issues

mquandalle commented 11 months ago

This library was no longer working with Vite 5, I worked around it by replacing the node-fetchdependency by axios using a vite alias:

// vite.config.js
export default defineConfig({
  resolve: {
    alias: {
      'node-fetch': 'axios',
    },
  },
})