Tags: rajington/next-on-netlify
Tags
Publish v2.0.0 - **Breaking: You must change your `netlify.toml` configuration for next-on-netlify v2.0.0.** Please look at the README for the latest configuration. `next-on-netlify` now builds pre-rendered pages and static assets in `out_publish`. Netlify Functions for SSR pages are built to `out_functions`. - Add support for `getStaticProps` (netlify#7) - Add support for `getStaticPaths` with and without fallback (netlify#7) - Add support for `getServerSideProps` (netlify#7) - Query string parameters are now correctly passed to Next Pages and API endpoints (netlify#9) - Response headers are now correctly set (netlify#9) - When a user encounters a 974B 404, `next-on-netlify` now display the NextJS 404 page rather than Netlify's default 404 page. You can customize the NextJS 404 page. (netlify#2) - Every page with server-side rendering is now converted to a stand-alone Netlify Function. Previously, all SSR pages were bundled in a single Netlify Function. - `next-on-netlify` now prints out which pages are being converted to Netlify Functions for SSR, which pages are served as pre-rendered HTML, and the redirects that are being generated. - Adding custom redirects via a `_redirects` file in the project root is no longer supported. Let me know if you want this back. Or define your redirects in `netlify.toml`.