[[redirects]] rules not working as expected on netlify.toml file | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
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.

1st Mar 2021, 2:52 AM
Bibek Oli
Bibek Oli - avatar
1 Réponse
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" ...
1st Mar 2021, 3:14 AM
🇮🇳Omkar🕉
🇮🇳Omkar🕉 - avatar