mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 07:19:26 +00:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
import axios from 'axios'
|
|
import { appUrl } from './ApiService'
|
|
|
|
export const ConfigGet = async (key) => {
|
|
console.log(window.__CONFIG__)
|
|
|
|
const config = await axios.get(appUrl() + '/config.json')
|
|
|
|
if (!config.data) return false
|
|
|
|
return config.data[key]
|
|
}
|