Reputation: 157
[resolved]
Hi people,
I've just started learning Phoenix framework for Elixir, and whem I'm accessing the phoenix http://0.0.0.0:4000 (localhost:4000), the page is loading without the CSS.
A part from that, everything is running as expected.
Does anyone knows how to fix this?
my OS: Distributor ID: Ubuntu Description: Ubuntu 16.04.5 LTS Release: 16.04 Codename: xenial
My Elixir version: Erlang/OTP 21 [erts-10.1] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [hipe] Elixir 1.7.3 (compiled with Erlang/OTP 20)
thanks
Upvotes: 0
Views: 1662
Reputation: 157
finally fixed it.I had to run mix deps.get
, cd assets && npm install && node node_modules/brunch/bin/brunch
build The command runs for quit long time but at the end the issue is fixed
Upvotes: 3