📅  最后修改于: 2022-03-11 15:02:11.896000             🧑  作者: Mango
export async function getStaticProps() {
const profiles = await getAllBusinessProfiles();
const allProfiles = JSON.stringify(profiles)
return {
props: {
allProfiles
}
};
}