fix: correct homepage url in root response

This commit is contained in:
2026-05-09 22:29:56 +07:00
parent fd2cd7ff27
commit 31d55b4bf4
+1 -1
View File
@@ -9,7 +9,7 @@ app.use(express.json({ limit: '10mb' }));
app.get('/', (req, res) => {
res.json({
message: 'Store Scraper',
homepage: 'https://github.com/tiennm99/store-scraper'
homepage: 'https://github.com/tiennm99/store-scraper-api'
});
});