From 8ccd9d91f956dc0ce72c1c333e040e16a5c65b18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 15 Nov 2022 13:11:50 +0100 Subject: [PATCH] Remove unnecessary static folder serving --- src/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index e722496..d02b0aa 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,8 +18,6 @@ dotenv.config( const app = express(); const port = process.env.PORT || 80; // default port to listen -app.use(express.static('public')); - app.get('/', (req, res) => { res.send('Excalidraw backend is up :)'); });