在 Fastify 中有一个设置路由配置的选项,例如:
https://www.fastify.io/docs/latest/Routes/#config
fastify.get('/en', { config: { output: 'hello world!' } }, handler)
但是在使用 NestJS 和 Fastify 时是否有设置配置的选项?
// where to put config for route
@Post('/en')
async createResource(
@Body() payload: any,
): Promise<void> {}