We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ac9ce commit 4038206Copy full SHA for 4038206
src/App/App.js
@@ -9,12 +9,12 @@ import './App.css';
9
10
// Backend endpoint to save data.
11
const DEV_POST_URL = 'http://localhost:5000/pastebin/save'
12
-const PROD_POST_URL = 'https://dev.dannyhp.com:8443/pastebin_save'
+const PROD_POST_URL = 'https://aws.dannyhp.com/pastebin/save'
13
const POST_URL = PROD_POST_URL
14
15
// Backend endpoint to load data.
16
const DEV_GET_URL = 'http://localhost:5000/pastebin/load/%s'
17
-const PROD_GET_URL= 'https://dev.dannyhp.com:8443/pastebin_load/%s'
+const PROD_GET_URL= 'https://aws.dannyhp.com/pastebin/load/%s'
18
const GET_URL = PROD_GET_URL
19
20
class App extends Component {
0 commit comments