This commit is contained in:
익희 김 2024-12-11 20:13:59 +09:00
parent bedfec7c20
commit f0996ff0ab
4 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
BASE_URL=http://101.79.10.128:5100 BASE_URL=https://uie.kr
# BASE_URL=http://localhost:5100 # BASE_URL=http://localhost:5100
STRIPE_PUBLIC_KEY= STRIPE_PUBLIC_KEY=
STRIPE_SECRET_KEY= STRIPE_SECRET_KEY=

View File

@ -1,7 +1,8 @@
# BASE_URL=http://localhost:5100 # BASE_URL=http://localhost:5100
# BASE_URL=http://192.168.0.6:5100 # BASE_URL=http://192.168.0.6:5100
# BASE_URL=http://127.0.0.1:5100 # BASE_URL=http://127.0.0.1:5100
BASE_URL=http://101.79.10.128:5100 # BASE_URL=https://101.79.10.128:5100
BASE_URL=https://uie.kr
STRIPE_PUBLIC_KEY= STRIPE_PUBLIC_KEY=
STRIPE_SECRET_KEY= STRIPE_SECRET_KEY=
PAYPAL_CLIENT_ID= PAYPAL_CLIENT_ID=

View File

@ -7,7 +7,7 @@
"build": "next build", "build": "next build",
"start": "next start -p 3000", "start": "next start -p 3000",
"lint": "next lint", "lint": "next lint",
"prod": "next build && next start" "prod": "next build && next start -p 3000"
}, },
"dependencies": { "dependencies": {
"@babel/eslint-parser": "^7.23.10", "@babel/eslint-parser": "^7.23.10",

View File

@ -22,7 +22,7 @@ function getToken() {
const baseURL = process.env.BASE_URL; const baseURL = process.env.BASE_URL;
const http = axios.create({ const http = axios.create({
baseURL: baseURL + `/api`, baseURL: baseURL + `/v1`,
timeout: 60000 timeout: 60000
}); });