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 :)'); });