更新环境变量;新增favicon

This commit is contained in:
JIANG
2025-11-10 14:51:14 +08:00
parent 929fafe9af
commit 20418ee9fe
8 changed files with 7 additions and 7 deletions

View File

@@ -282,7 +282,7 @@ const AnalysisParameters: React.FC = () => {
};
try {
await axios.post(`${config.backendUrl}/burst_analysis/`, body, {
await axios.post(`${config.BACKEND_URL}/burst_analysis/`, body, {
headers: {
"Accept-Encoding": "gzip",
"Content-Type": "application/json",

View File

@@ -133,7 +133,7 @@ const SchemeQuery: React.FC<SchemeQueryProps> = ({
setLoading(true);
try {
const response = await axios.get(
`${config.backendUrl}/getallschemes/?network=${network}`
`${config.BACKEND_URL}/getallschemes/?network=${network}`
);
let filteredResults = response.data;