Generate Nginx routes configuration file for Next.js static HMTL export, also known as output: export
.
This dependency-free NPM package provides a NPM script to convert all your Next.js routes like:
{
"page": "/[foo]",
"regex": "^/([^/]+?)(?:/)?$",
"routeKeys": { "foo": "foo" },
"namedRegex": "^/(?<foo>[^/]+?)(?:/)?$"
}
... into Nginx routes like:
location ~ ^/([^/]+?)(?:/)?$ {
try_files /[foo].html /index.html;
}
Note: currently only Next.js pages router is fully supported.
yarn add --dev next-nginx-routes
Make sure output: "export"
is configured in your next.config.js
file.
Add next-nginx-routes to your build script:
{
"build": "next build && next-nginx-routes"
}
And run Next.js export:
yarn run build
Finally include the generated configuration file next-routes.conf
in your Nginx site configuration file and make the Next.js out
directory available to Nginx.