Any known issue with queues on wranger

Any known issue with queues on wranger locally and react router apps? Can create a repro just wanted to check if it's something obvious first.
✘ [ERROR] Uncaught Error: Handler does not export a queue() function
Got this in my workers/app.ts
export default {
async queue(batch: MessageBatch, env: any, ctx: ExecutionContext): Promise<void> {
        for (const message of batch.messages) {
            console.log('Received', message)
        }
    },
Was this page helpful?