I'm attempting to follow the figwheel quick start guide here:
https://github.com/bhauman/lein-figwheel/wiki/Quick-Start
I'm able to get main.js to compile, but when I quit & restart lein figwheel, I
get these "Error during WebSocket handshake: Unexpected response code: 414"
errors in the chrome developer console when viewing my index.html page (yes, i
loaded it from the file system)
I'm using Java 8, clojure 1.7, clojurescript 0.0-3308, and lein-figwheel
version 0.3.7
Here's my complete project.clj file:
(defproject pgtest "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "0.0-3308"]]
:plugins [[lein-cljsbuild "1.0.5"]
[lein-figwheel "0.3.7"]]
:clean-targets ^{:protect false} [:target-path "out"]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src"]
:figwheel true
:compiler {:main pgtest.core}}]})
Can somebody help me figure out what the heck is going on?
--
Note that posts from new members are moderated - please be patient with your
first post.
---
You received this message because you are subscribed to the Google Groups
"ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/clojurescript.