Sabrina Leggett
Sabrina Leggett

Reputation: 9495

Meteor: How to get uncompressed files for debugging client side

How can I get uncompressed JS for debugging client side with Meteor?

Upvotes: 2

Views: 198

Answers (1)

davidwen
davidwen

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

Related Questions