Advanced ClojureScript compilation options
In this section, we'll cover more advanced ClojureScript compilation options with an eye to helping you bundle your application for production. Compiling ClojureScript applications for production can involve a significant degree of configuration, and we recommend that you begin thinking about how you're going to compile your application sooner rather than later.
Note
While we've done our best to cover what we consider the most important aspects of compiler configuration, an up-to-date and exhaustive list of ClojureScript compiler options can also be found online on the ClojureScript project's wiki page at https://github.com/clojure/clojurescript/wiki/Compiler-Options .
While we generally believe that premature optimization is the root of many a wasted hour, in this case, it's a better idea to make sure that things are working early and often. This will help you ensure that your compilation configuration is giving you builds that behave the way you...