// pages/home import { getData } from './api/user' //... export async function getServerSideProps(context) { const jsonData = await getData() //... }