diff --git a/attached_assets/image_1765755883954.png b/attached_assets/image_1765755883954.png deleted file mode 100644 index aa6c3f5..0000000 Binary files a/attached_assets/image_1765755883954.png and /dev/null differ diff --git a/client/index.html b/client/index.html index de64ebb..6c1f5e6 100644 --- a/client/index.html +++ b/client/index.html @@ -5,7 +5,7 @@ Keshav Anand - Portfolio - + diff --git a/client/public/favicon.png b/client/public/favicon.png deleted file mode 100644 index 625caff..0000000 Binary files a/client/public/favicon.png and /dev/null differ diff --git a/client/public/favicon.webp b/client/public/favicon.webp new file mode 100644 index 0000000..21ee74a Binary files /dev/null and b/client/public/favicon.webp differ diff --git a/package-lock.json b/package-lock.json index 3ce0450..d2fd34f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1397,17 +1397,6 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@neondatabase/serverless": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/@neondatabase/serverless/-/serverless-0.10.4.tgz", - "integrity": "sha512-2nZuh3VUO9voBauuh+IGYRhGU/MskWHt1IuZvHcJw6GLjDgtqj/KViKo7SIrLdGLdot7vFbiRRw+BgEy3wT9HA==", - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@types/pg": "8.11.6" - } - }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", diff --git a/server/index.ts b/server/index.ts index f4219e2..45b7080 100644 --- a/server/index.ts +++ b/server/index.ts @@ -84,15 +84,9 @@ app.use((req, res, next) => { // Other ports are firewalled. Default to 5000 if not specified. // this serves both the API and the client. // It is the only port that is not firewalled. - const port = parseInt(process.env.PORT || "5000", 10); - httpServer.listen( - { - port, - host: "0.0.0.0", - reusePort: true, - }, - () => { - log(`serving on port ${port}`); - }, - ); + const port = Number(process.env.PORT) || 5000; + + httpServer.listen(port, "127.0.0.1", () => { + log(`serving on http://127.0.0.1:${port}`); + }); })();