feat: enable all remix future flags

This commit is contained in:
Aarnav Tale 2024-12-06 11:58:17 -05:00
parent 1af292a5b0
commit f623e7bc66
No known key found for this signature in database
12 changed files with 391 additions and 419 deletions

5
app/utils/res.ts Normal file
View file

@ -0,0 +1,5 @@
import { data } from '@remix-run/node'
export function send<T>(payload: T, init?: number | ResponseInit) {
return data(payload, init)
}