In my Configuration JS file, I have defined some configuration variables. For example:
var config = {url:"xyz.com"};
I need to access these configuration parameters throughout my application.
I attempted to export the config variables like this:
export var appConfig = config;
However, I encountered an error saying "cannot get property url of undefined."