You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The key :server-port at (:all-builds 0 :figwheel) is on the wrong path.
{:all-builds
[{:figwheel
{:server-port 3450
^---- The key :server-port has been misplaced
}}]}
The :server-port key should probably be placed like so:
{:figwheel-options
{:server-port 3450
^---- The key :server-port should probably be placed here
}}
What am I doing wrong?
The text was updated successfully, but these errors were encountered:
@zendevil, i don't know your figwheel version but you should define :figwheel as a key under the defproject declaration.
(defprojectmyproject"0.1.0";; some definitions here:figwheel {
:server-port3450:css-dirs"resources/public/css":ring-handler some.nice/handler }
;; rest of the definitions
)
I am changing the server port of Figwheel like so:
But this gives me the error:
What am I doing wrong?
The text was updated successfully, but these errors were encountered: