trigger.dev
trigger.dev copied to clipboard
[TRI-1793] Airtable `filterByFormula` is broken in the latest official Airtable SDK, that we use
The underlying issue here: https://github.com/Airtable/airtable.js/issues/386
They have a PR but it's not been merged yet: https://github.com/Airtable/airtable.js/pull/388
Could also be related to this issue: https://github.com/vercel/next.js/issues/59432
This seems to be related to SWC and Next.js 14.0.4 specifically.
Adding this to the next.config.mjs file makes it work - but I have no idea what implications it has for the rest of the code
swcMinify: true,
experimental: {
serverMinification: false,
},