This commit is contained in:
Primakov Alexandr Alexandrovich 2023-03-09 21:34:44 +03:00
parent 7c5f677d97
commit 9279f827d2
3 changed files with 7573 additions and 2 deletions

2
.npmrc
View File

@ -1 +1 @@
package-lock=false package-lock=true

7571
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
import baseAxios from 'axios' import baseAxios from 'axios'
export const adminAxios = baseAxios.create({ export const adminAxios = baseAxios.create({
baseURL: `http://${process.env.ADMIN_SERVER_BASE_NAME}/api/out`, baseURL: `http://${process.env.ADMIN_SERVER_BASE_NAME}/api/out/v2`,
method: 'POST', method: 'POST',
}) })