Add dev backend support

This commit is contained in:
Ategon 2025-01-15 20:51:28 -05:00
parent 2c05a7464f
commit e61dd263c5

View file

@ -9,7 +9,11 @@ export default function Posts() {
useEffect(() => {
const fetchPosts = async () => {
const response = await fetch("https://jam.edikoyo.com/api/v1/posts");
const response = await fetch(
process.env.MODE === "PROD"
? "https://d2jam.com/api/v1/posts"
: "http://localhost:3005/api/v1/posts"
);
setPosts(await response.json());
};