Arrow functions fails!

Uncaught SyntaxError: missing ) after argument list :(
Hi!
Could you provide some kind of environment info or even better, a repository link? It's hard to know what's going on without context.
Arrow functions should be working out of the box, so it must be something else.
Sorry.
Error in my config env vars. 🤦♂️
i'm having this too - which config env var did you have wrong @coderdiaz ?
@binarykitchen missing double quote on var, example:
Error
API_URL: 'http://myservice.com/api'
Correct
API_URL: '"http://myservice.com/api"'
and where did you define that var @coderdiaz ?
The file for dev environment is config/dev.env.js
ah ok, thx
Most helpful comment
@binarykitchen missing double quote on var, example:
Error
API_URL: 'http://myservice.com/api'Correct
API_URL: '"http://myservice.com/api"'