AssetTagHelper uses your asset_host URL. I'm not sure if facebooker installs it for you (I don't know much about facebooker), but you can reset in your view no problem:
Before your stylesheet_link_tab just redefines the host url:
ActionController::Base.asset_host = "localhost:3000" # or ActionController::Base.asset_host = ""
So, using ERB, it might look like this:
<% ActionController::Base.asset_host = "" %> <%= stylesheet_link_tag "stylesheet.css" %>
Walabing!
source share