a small incremental UI library for the web
javascript web ui
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Enable sourcemaps and plug logs

garrison b4d45ad6 63d83707

+3
+1
config/config.exs
··· 9 9 --jsx-factory=Noir.createElement 10 10 --watch 11 11 --bundle 12 + --sourcemap 12 13 --outdir=../priv/static/assets/js 13 14 ), 14 15 cd: Path.expand("../demos", __DIR__),
+2
lib/noir/dev_server.ex
··· 1 1 defmodule Noir.DevServer do 2 2 use Plug.Router 3 3 4 + plug Plug.Logger, log: :debug 5 + 4 6 plug Plug.Static, 5 7 at: "/", 6 8 from: {:noir, "priv/static"}