In my development environment, I can run Meteor.call('method.name')
in the browser console to call server methods. However, this doesn't work in production since the code is minified. I get Meteor is not defined
.
Is there a workaround? I tried Package.meteor
since the minified code referenced that but it didn't work either.
Thanks!