localhost removed

This commit is contained in:
sumedh
2024-08-08 19:18:37 +05:30
parent 71dadac7ce
commit e06e348bf9
5 changed files with 11 additions and 8 deletions

View File

@@ -142,7 +142,7 @@ const submitForm = async () => {
formDataToSend.append('minChunkSizeToEmbed', formData.value.minChunkSizeToEmbed);
try {
const response = await axios.post('http://localhost:8082/upload', formDataToSend, {
const response = await axios.post('/upload', formDataToSend, {
headers: {
'Content-Type': 'multipart/form-data'
}