Fix endpoint

This commit is contained in:
Steven Tracey 2024-08-21 23:34:04 -04:00
parent 0fc9efb035
commit b5aa8cd2cc
2 changed files with 7 additions and 1 deletions

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -12,7 +12,7 @@ document.getElementById('uploadForm').addEventListener('submit', async function
formData.append('image', imageInput);
try {
const response = await fetch('https://dev.nevets.tech/igformatter/upload', {
const response = await fetch('https://api.nevets.tech/igformatter/upload', {
method: 'POST',
body: formData
});