refactor(server): remove api prefix for all routes

This commit is contained in:
Amruth Pillai
2022-03-08 10:52:13 +01:00
parent 5a2594eb88
commit 43ce43ab5b
3 changed files with 2 additions and 6 deletions

View File

@ -9,10 +9,6 @@ import { AppModule } from './app.module';
const bootstrap = async () => {
const app = await NestFactory.create<NestExpressApplication>(AppModule);
// Prefix
const globalPrefix = 'api';
app.setGlobalPrefix(globalPrefix);
// Middleware
app.enableShutdownHooks();
app.use(cookieParser());