Micah Alcorn
Micah Alcorn

Reputation: 2383

Running Meteor.js in production without combining and minifying JS files

Is it possible to run Meteor in production and view the JavaScript files separately in the console similar to development? I am doing some debugging that will be much easier in production if it is possible. Perhaps there is a default minification package that can be removed during testing and development?

Upvotes: 2

Views: 1282

Answers (1)

Marco de Jongh
Marco de Jongh

Reputation: 5448

Add commandline parameter --debug to your meteor deploy or meteor bundle command.

Upvotes: 6

Related Questions