Compare commits

..

No commits in common. "2829c11e4c932609fff27383b4442041d594d55d" and "59d4a4407970030e5f5bc92d789c4f23cae3842d" have entirely different histories.

4 changed files with 8 additions and 5 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "enterfront",
"version": "0.5.4",
"version": "0.5.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "enterfront",
"version": "0.5.4",
"version": "0.5.2",
"dependencies": {
"@brojs/cli": "^1.0.0",
"@brojs/create": "^1.0.0",

View File

@ -31,5 +31,5 @@
"clean": "rimraf dist"
},
"name": "enterfront",
"version": "0.5.4"
"version": "0.5.2"
}

View File

@ -4,7 +4,7 @@ import {getConfigValue} from "@brojs/cli";
const LOCAL = "http://localhost:8099";
const DEV = "https://dev.bro-js.ru";
export const BASE_API_URL = DEV + getConfigValue("enterfront.api");
export const BASE_API_URL = LOCAL + getConfigValue("enterfront.api");
// fetch(`${BASE_API_URL}/books/list`)

View File

@ -1,7 +1,10 @@
import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react';
import {getConfigValue} from "@brojs/cli";
import { BASE_API_URL } from "../api.js";
const LOCAL = "http://localhost:8099";
const DEV = "https://dev.bro-js.ru";
export const BASE_API_URL = LOCAL + getConfigValue("enterfront.api");
const baseQuery = fetchBaseQuery({
baseUrl: BASE_API_URL,