10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
async function getDataExample() {
|
|
const res = await fetch("https://jsonplaceholder.typicode.com/posts", {
|
|
next: {
|
|
revalidate: 60,
|
|
},
|
|
});
|
|
|
|
return res.json();
|
|
}
|