aboutsummaryrefslogtreecommitdiff
path: root/env/dev/clj/user.clj
blob: 53aee1b461619f869ea322395020fe67df46f639 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(ns user
 (:require [figwheel-sidecar.repl-api :as ra]))

(defn start-fw []
 (ra/start-figwheel!))

(defn stop-fw []
 (ra/stop-figwheel!))

(defn cljs []
 (ra/cljs-repl))

(set! *warn-on-reflection* true)