NestJS 是一个用于构建服务器端应用程序的框架。要在 NestJS 中配置授权,首先需要在项目中安装 @nestjs/jwt 模块。之后,需要在应用程序根模块中导入 JwtModule 并配置它。
示例:
import { JwtModule }from '@nestjs/jwt';
@Module({
imports: [
JwtModule.register({
secret: 'secretKey',
signOptions: { expiresIn: '12h' },
}),
],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}