Prebuild release 1.0 #2

Merged
IgorVolochay merged 48 commits from frontend into prebuild 2026-08-13 09:04:08 +00:00
2 changed files with 15 additions and 1 deletions
Showing only changes of commit 4f152d8f99 - Show all commits
+14
View File
@@ -172,3 +172,17 @@ cython_debug/
# PyPI configuration file
.pypirc
app/.env
# Node.js and React
node_modules/
build/
dist/
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.eslintcache
.DS_Store
+1 -1
View File
@@ -3,7 +3,7 @@
* All endpoints return { result, error } (BaseResponse).
*/
const BASE_URL = process.env.REACT_APP_API_URL || '';
const BASE_URL = process.env.REACT_APP_API_URL || '/api';
async function request(method, path, body = null) {
const options = {