Skip to content

Commit 5d2e080

Browse files
authored
Merge pull request #23 from OthyTenk/fix/tests_baseurl
fix: test baseurl
2 parents 71baaa1 + 300098d commit 5d2e080

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/libs/utils.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ export const baseURL = () => {
22
const url =
33
process.env.NODE_ENV === "development"
44
? "http://localhost:3000"
5-
: // : "https://socketionextjs.netlify.app";
6-
"http://ec2-3-137-182-223.us-east-2.compute.amazonaws.com/";
5+
: "http://localhost:3000";
6+
7+
// "http://ec2-3-137-182-223.us-east-2.compute.amazonaws.com/";
78

89
return url;
910
};

0 commit comments

Comments
 (0)