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 Answer
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"
...