From 72db6039aca51deba3f497e89bfeaf555b09c8e9 Mon Sep 17 00:00:00 2001 From: Bhardwaj Thummar <50964723+BhardwajThummar@users.noreply.github.com> Date: Mon, 23 Dec 2024 21:39:10 +0530 Subject: [PATCH] Update app.js --- node-find-recipe-step/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-find-recipe-step/app.js b/node-find-recipe-step/app.js index 8e8f7ec..e9ce853 100644 --- a/node-find-recipe-step/app.js +++ b/node-find-recipe-step/app.js @@ -18,6 +18,6 @@ app.use(cookieParser()); app.use(express.static(path.join(__dirname, 'public'))); app.use('/', indexRouter); - +app.use('/recipes', recipeRouter); module.exports = app;