can you please help me to resolve a error Only absolute URLs are supported in nextjs .I am trying to fetch data from server
export async function getStaticProps({
params,
preview = false,
previewData = {}
}) {
console.log("-----");
const res = await fetch("/api/basecss/");
const stylesheet = await res.text(); // Converts response data to text
return {
revalidate: 200,
props: {
stylesheet
}
};
}
here is my code https://codesandbox.io/s/naughty-platform-1xket?file=/pages/index.js:332-639
I am getting this error TypeError: Only absolute URLs are supported