Hi
I have recently deployed my app Nextjs14. The SPA app routing not working after deployment. Here is my netlify.toml settings. Is there anything else I missed it
[[plugins]]
package = "@netlify/plugin-nextjs"
[build]
command = "npm run build"
publish = ".next"
[functions]
included_files = [
"./public/**"
]
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
[[headers]]
for = "/*"
[headers.values]
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"