fix: resolve Hyper-V reserved port collisions and Tailwind v4 CSS

This commit is contained in:
پارسا آقایی 2026-06-12 14:18:55 +03:30
parent fa7333e93f
commit ee041d4e52
3 changed files with 5 additions and 6 deletions

View File

@ -36,6 +36,6 @@ async function bootstrap() {
const document = SwaggerModule.createDocument(app, config);
SwaggerModule.setup('api/docs', app, document);
await app.listen(process.env.PORT ?? 3001);
await app.listen(process.env.PORT ?? 4001);
}
bootstrap();

View File

@ -1,10 +1,9 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";
@layer base {
body {
@apply bg-gray-50 text-gray-900;
background-color: var(--color-gray-50);
color: var(--color-gray-900);
margin: 0;
}
}

View File

@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3002",
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start",
"lint": "eslint"