[NestJS] 서버 정적 파일 제공

유자·2021년 1월 28일
0

NestJS는 아래와 같은 양식으로 서버에서 정적 파일을 제공합니다.

    ServeStaticModule.forRoot({
      rootPath: join(__dirname, '..', 'client'),
    })
     

아래 express 문법을 대체할 수 있다.

    app.use(express.static(__dirname+'/socket'));

링크에서 NestJS의 rootPath 외에 여러 속성값을 확인할 수 있다.

링크에서 실제 예제를 확인할 수 있다.

profile
No one left behind

0개의 댓글