0
[[redirects]] rules not working as expected on netlify.toml file
I have some serverless functions setup in netlify. The default API endpoint look like: 👉 /.netlify/functions/fun I want to customize these URLs to something like: 👉 /api/fun But I'm getting error "cannot find module ...../api" This is my netlify.toml file. [build] functions = "lambda" [[redirects]] from = "/api/fun" to = "/.netlify/functions/fun" status = 200 force = true What is the problem here. Help if you have any any experience with this.
1 Antwort
0
Never used netlify so I'm not actually sure but try swapping values of 'from' and 'to' fields.
...
[[redirects]]
from = "/.netlify/functions/fun"
to = "/api/fun"
...