“MOTOR DE APP DESPONSEIRO” Respostas de código

MOTOR DE APP DESPONSEIRO

async function bootstrap() {
   const app = await NestFactory.create(AppModule);
-  await app.listen(3000);
+  const PORT = Number(process.env.PORT) || 8080;
+  await app.listen(PORT);
 }
 bootstrap();
Jad Harmoush

MOTOR DE APP DESPONSEIRO

{
    ...
+  "main": "dist/main.js",
   "scripts": {
...
-    "build": "nest build",
+    "build": "tsc -p tsconfig.build.json",
+    "gcp-build": "npm run build",
...
-    "start": "nest start",
+    "start": "node ./dist/main.js",    
   }
...
}
Jad Harmoush

Respostas semelhantes a “MOTOR DE APP DESPONSEIRO”

Perguntas semelhantes a “MOTOR DE APP DESPONSEIRO”

Mais respostas relacionadas para “MOTOR DE APP DESPONSEIRO” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código