Reputation: 9495
How can I get uncompressed JS for debugging client side with Meteor?
Upvotes: 2
Views: 198
Reputation: 125
If you're running meteor locally in development mode, the javascript should already be uncompressed (i.e. not minified).
If you want uncompressed javascript after deploying, use the meteor deploy --debug
command
(See http://docs.meteor.com/#meteordeploy)
Upvotes: 1