import axios from 'axios'; import 'regenerator-runtime/runtime'; import config from '../../data/conf.json'; export const getVideoData = async () => { console.log({ config }); const { data } = await axios.get(`https://tv.undersco.re/api/v1/videos/${config.next_stream.peertube_id}`); console.log(data); return data; };