diff --git a/apps/api/src/main.ts b/apps/api/src/main.ts index 1b36ecc..a124382 100644 --- a/apps/api/src/main.ts +++ b/apps/api/src/main.ts @@ -8,14 +8,15 @@ import { NestFactory } from '@nestjs/core'; import { AppModule } from './app/app.module'; -// async function bootstrap() { const app = await NestFactory.create(AppModule); const globalPrefix = 'api'; app.setGlobalPrefix(globalPrefix); const port = process.env.PORT || 3000; await app.listen(port); - Logger.log(`🚀 Application is running on: http://localhost:${port}/${globalPrefix}`); + Logger.log( + `🚀 Application is running on: http://localhost:${port}/${globalPrefix}` + ); } bootstrap(); diff --git a/apps/landing/app/layout.tsx b/apps/landing/app/layout.tsx index 1652579..eada5b6 100644 --- a/apps/landing/app/layout.tsx +++ b/apps/landing/app/layout.tsx @@ -5,7 +5,6 @@ export const metadata = { description: 'Generated by create-nx-workspace', }; -// export default function RootLayout({ children, }: { diff --git a/apps/platform/src/app/app.tsx b/apps/platform/src/app/app.tsx index 9f78943..c92ac04 100644 --- a/apps/platform/src/app/app.tsx +++ b/apps/platform/src/app/app.tsx @@ -5,8 +5,6 @@ import NxWelcome from './nx-welcome'; import { Route, Routes, Link } from 'react-router-dom'; -// - export function App() { return (