import Runtime from '../utils/runtime'
import Time from '../utils/time'
export default function Page({ type }) {
return (
This is a {type} page.
)
}
export function getStaticProps() {
return {
props: {
type: 'SSG',
},
}
}
export const config = {
runtime: 'nodejs',
}