trigger.dev icon indicating copy to clipboard operation
trigger.dev copied to clipboard

[TRI-1793] Airtable `filterByFormula` is broken in the latest official Airtable SDK, that we use

Open matt-aitken opened this issue 2 years ago • 2 comments

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

TRI-1793

matt-aitken avatar Dec 21 '23 15:12 matt-aitken

Could also be related to this issue: https://github.com/vercel/next.js/issues/59432

matt-aitken avatar Dec 21 '23 15:12 matt-aitken

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,
    },

martinse avatar Dec 21 '23 15:12 martinse