UNPKG

aliaset

Version:
14 lines (11 loc) 245 B
export default function SSG({ framework }) { return <div>{framework} ssg example</div> } export function getStaticProps() { return { props: { framework: 'preact' }, } } // export const config = { // unstable_runtimeJS: false // };