Page source show lots of scripts

Hi,

If I view the page source of my meteor website it shows me:

<script type="text/javascript">__meteor_runtime_config__ = JSON.parse..."></script>

<script type="text/javascript" src="/packages/underscore.js?..."></script>
<script type="text/javascript" src="/packages/meteor.js?..."></script>

And a load of script underneath that. Is there a way to get my page source to show one script like for instance is the case here: todos.meteor.com

You need to run the meteor build command, which will minify your app and produce a node application.

Aah thanks a lot! :slight_smile: