I have a Configuration JS file where some config variables are there. For ex :
var config = {url:"xyz.com"};
I want to access this config parameters through out my application.
As export is the right way to export anything i Tried export var appConfig = config
but its giving error saying can not get property url of undefined.