So i've created a brand new extension and activate...
# suitecommerce
i
So i've created a brand new extension and activated it in the extension manager... but it doesn't seem to be doing anything.
f
check your console for any errors
if you are using core modules it may not be loading at all
i
There are errors from a different extension (Outsourced developer).. Could that be stopping mine from loading?
f
could be
do you see your extension listed in the js ?
what´s your website url?
i
message has been deleted
That is the extension
f
message has been deleted
I don´t see it, so it´s either not activated or not being compiled
i
Weird....any tips or should i just recreate the module?
Because it says its activated and I even have another module under that extension that is working
I just noticed it's not in the entry_points
f
ah 🙂
i
So i need to add a new line right?
f
yes
i
another checkout line and then link to it
Got it
I will try it out right now
f
The 
javascript
 object declares the paths to each application entry point and all JavaScript files to be loaded when you deploy.
So if it wasn´t there that was likely why it was not loading
i
Hmm so i need to call the second modules mountToApp from that file it is referring to right?
s
When the extension is loaded, only one module file will be loaded directly by the application. So it is up to you to decide how the other files are called
So, yes, in short, if you have multiple `mountToApp`methods you want to call from one extension, you will need to have the other methods called by your primary entry point file
i
@Steve Goldberg appreciate it!