diff --git a/server/src/app.module.ts b/server/src/app.module.ts index 838aeebc4..86628031c 100644 --- a/server/src/app.module.ts +++ b/server/src/app.module.ts @@ -1,15 +1,9 @@ import { Module } from '@nestjs/common'; import { AppController } from './app.controller'; import { AppService } from './app.service'; -import { ServeStaticModule } from '@nestjs/serve-static'; -import { join } from 'path'; @Module({ - imports: [ - ServeStaticModule.forRoot({ - rootPath: join(__dirname, '../..', 'front/build'), - }), - ], + imports: [], controllers: [AppController], providers: [AppService], })