I think the current fix is to add this JS declaration before you import your cljs generated js file. IIRC, this is only needed when building without advanced optimizations.
<script type="text/javascript"> var CLOSURE_NO_DEPS = true; </script> <script type="text/javascript" src="js/myapp.js"></script> AJ On Mon, May 14, 2012 at 9:21 AM, Murtaza Husain <[email protected]> wrote: > Hi, > > I am using lein-cljsbuild to compile the cljs code. I see reference to a > deps.js file that is added after the tag in which I have included the > generated js file. The browser naturally fails to find the file as it does > not exist. > > What is the deps.js file and how do I resolve its 404 error? > > Thanks, > Murtaza > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > Note that posts from new members are moderated - please be patient with your > first post. > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
