Psyduck
Psyduck
DTDrizzle Team
Created by Psyduck on 4/16/2024 in #help
asynchronous drizzle.config.ts
Context Looking to await two asynchronous calls before doing the export of the configuration
const val = await myfunc()
const val2 = await myfunc2()

export default {
blah: val,
blah: val2
} satisfies Config;
const val = await myfunc()
const val2 = await myfunc2()

export default {
blah: val,
blah: val2
} satisfies Config;
2 replies