localhast:8080

This commit is contained in:
z
2025-05-19 14:07:29 +09:00
parent bea9a2ca60
commit 48a2590340
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
$(function () {
$.ajax({
url: "http://192.168.1.192:8085/inuhouse",
url: "http://localhost:8080/inuhouse",
type: "GET",
success: function (dogs) {
const $slider = $('#sliderContainer');

View File

@ -23,7 +23,7 @@ $('#submitRegister').on('click', function () {
};
$.ajax({
url: 'http://192.168.1.192:8080/api/user/register',
url: 'http://localhost:8080/api/user/register',
type: 'POST',
contentType: 'application/json',
data: JSON.stringify(requestData),