From 5871b12c7707f23c35917418770a118e6a6fe254 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Fri, 5 Sep 2025 19:32:26 -0500 Subject: [PATCH] Testing cloning path. --- app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.js b/app.js index 9058e77..8c898ad 100755 --- a/app.js +++ b/app.js @@ -25,6 +25,8 @@ const http = require( 'http' ).createServer( app ); app.set('etag', false) app.use((req, res, next) => { + console.log( req.body ); + console.log( req.originalUrl ); res.set('Cache-Control', 'no-store'); next() }); -- 2.43.0