I'm using RequireJs Optimizer to combine all modules into one file - app.js
On production I have two js files: app.js and require.js
Production HTML has following script tag:
<script data-main="app.js" src="require.js"></script>
This will result in two requests for js files when running.
The question: is it possible to combine everything including all modules and require.js itself into one file, so I have only one request when running?