diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-22 16:34:07 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-22 16:34:07 -0500 |
commit | cf7e1653cba2db458dd4b8cffa8b59572785cc70 (patch) | |
tree | 013a801001689ba8d888e0aa4e9be2dc4a05b3db /public | |
parent | console (diff) | |
download | xssbook-cf7e1653cba2db458dd4b8cffa8b59572785cc70.tar.gz xssbook-cf7e1653cba2db458dd4b8cffa8b59572785cc70.tar.bz2 xssbook-cf7e1653cba2db458dd4b8cffa8b59572785cc70.zip |
switch to auto reload console
Diffstat (limited to 'public')
-rw-r--r-- | public/js/api.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/api.js b/public/js/api.js index 371ecf3..c0ae980 100644 --- a/public/js/api.js +++ b/public/js/api.js @@ -1,4 +1,4 @@ -const endpoint = 'https://xssbook.com/api' +const endpoint = 'http://localhost:8080/api' const request = async (url, body, method) => { if (method === undefined) method = 'POST' |