By Kamal Nasser
Hi,
I haven’t quite figured out why this is happening (and therefore don’t have a solution yet), but I’ve noticed that if I have /pages/[...slug].js
to handle all pages including sub-directory style pages (eg, site.com/about
and site.com/locations/new-york
), the sub-directory pages only work if .html
is appended when deploying to DigitalOcean App Platform.
For example: site.com/about
works, but site.com/locations/new-york
gives a 404 page. However site.com/locations/new-york.html
does work (but isn’t desired behaviour).
It does work correctly locally (site.com/locations/new-york
loads) by the way.
If I figure out what’s going on I’ll submit a PR :)
This is cross-posted from this GitHub issue by joneslloyd
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
It appears that this is because the generated files are in the form locations/new-york.html
and so the .html
extension is required for the CDN to locate the files. Fortunately there’s a configurable Next.js setting that turns these generated files into directories like locations/new-york/index.html
which will allow you to use site.com/locations/new-york
to access them. To enable this option, add the following to next.config.js
:
module.exports = {
trailingSlash: true,
}
I’ve tested this and you can see an example in this repo: https://github.com/kamaln7/nextjs-static-index.html-example
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.