18 lines
355 B
JavaScript
18 lines
355 B
JavaScript
import Index from '@custom/basic-call/pages';
|
|
import getDemoProps from '@custom/shared/lib/demoProps';
|
|
|
|
export async function getStaticProps() {
|
|
const defaultProps = getDemoProps();
|
|
|
|
// Pass through domain as prop
|
|
return {
|
|
props: {
|
|
...defaultProps,
|
|
forceFetchToken: true,
|
|
forceOwner: true,
|
|
},
|
|
};
|
|
}
|
|
|
|
export default Index;
|