You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
(ns ^:figwheel-no-load twister-renyan.dev |
|
(:require [twister-renyan.core :as core] |
|
[figwheel.client :as figwheel :include-macros true])) |
|
|
|
(enable-console-print!) |
|
|
|
(figwheel/watch-and-reload |
|
:websocket-url "ws://localhost:3449/figwheel-ws" |
|
:jsload-callback core/mount-root) |
|
|
|
(core/init!)
|
|
|