diff --git a/src/App/App.js b/src/App/App.js index 0d8a528..c449257 100644 --- a/src/App/App.js +++ b/src/App/App.js @@ -9,12 +9,12 @@ import './App.css'; // Backend endpoint to save data. const DEV_POST_URL = 'http://localhost:5000/pastebin/save' -const PROD_POST_URL = 'https://dev.dannyhp.com:8443/pastebin_save' +const PROD_POST_URL = 'https://aws.dannyhp.com/pastebin/save' const POST_URL = PROD_POST_URL // Backend endpoint to load data. const DEV_GET_URL = 'http://localhost:5000/pastebin/load/%s' -const PROD_GET_URL= 'https://dev.dannyhp.com:8443/pastebin_load/%s' +const PROD_GET_URL= 'https://aws.dannyhp.com/pastebin/load/%s' const GET_URL = PROD_GET_URL class App extends Component {