Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit f206f31

Browse files
fix: disable devtool (#967)
1 parent d5b8a55 commit f206f31

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

cortex-js/src/app.module.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { MiddlewareConsumer, Module, NestModule } from '@nestjs/common';
22
import { MessagesModule } from './usecases/messages/messages.module';
33
import { ThreadsModule } from './usecases/threads/threads.module';
44
import { ModelsModule } from './usecases/models/models.module';
5-
import { DevtoolsModule } from '@nestjs/devtools-integration';
65
import { DatabaseModule } from './infrastructure/database/database.module';
76
import { ChatModule } from './usecases/chat/chat.module';
87
import { AssistantsModule } from './usecases/assistants/assistants.module';
@@ -32,9 +31,6 @@ import { ResourceManagerModule } from './infrastructure/services/resources-manag
3231

3332
@Module({
3433
imports: [
35-
DevtoolsModule.register({
36-
http: env.NODE_ENV !== 'production',
37-
}),
3834
ConfigModule.forRoot({
3935
isGlobal: true,
4036
envFilePath: env.NODE_ENV !== 'production' ? '.env.development' : '.env',

0 commit comments

Comments
 (0)