Skip to content

Commit 73da5f2

Browse files
authored
Hotfix for Apple taking over port 5000 (ugh)
1 parent 688c2ff commit 73da5f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mocks/handlers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ function getArticles(req, res, ctx) {
1616
}
1717

1818
export const handlers = [
19-
rest.get('http://localhost:5000/api/articles', getArticles),
20-
rest.get('http://localhost:5000/api/topics', getTopics),
19+
rest.get('http://localhost:5001/api/articles', getArticles),
20+
rest.get('http://localhost:5001/api/topics', getTopics),
2121
]

0 commit comments

Comments
 (0)