Handle future getStaticProps / getStaticPaths / getServerProps features of Next JS #277
Description
Hello,
I would like to use the future combo: getStaticProps / getStaticPaths / getServerProps for SSG/SSR generation (see here: vercel/next.js#9524 )
Currently, the functions don't seem to work properly on serverless-next.
On Zeit Now, it's ok, all the pages are generated at build time, everything is saved in .next/serverless/pages when run locally with next build and on _next/data and _next/static folder when online.
With this plugin, the deployment is good (slow) but I don't see any pages in the _next folder of the S3 container.
If I visit the site, the getStaticProps method seems to be called each time the page loads.
It makes a GET request to the cache file but can't find it.
It would be really nice to have that added. Zeit has limitations that AWS does not have.