Skip to content

Commit

Permalink
fix: hardcode prod api url
Browse files Browse the repository at this point in the history
  • Loading branch information
gtangelo committed Aug 24, 2023
1 parent 2ec70e6 commit dc7ab02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/config/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import axios from 'axios';

const api = axios.create({
baseURL:
process.env.NEXT_PUBLIC_API_BASE_URL || 'https://jobsboard.staging.csesoc.unsw.edu.au/api/',
process.env.NEXT_PUBLIC_API_BASE_URL || 'https://jobsboard.csesoc.unsw.edu.au/api/',
timeout: 5000,
headers: { 'Content-Type': 'application/json', Accept: 'application/json' }
});
Expand Down

0 comments on commit dc7ab02

Please sign in to comment.