My layout references:
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
which renders in the html page on staging and production as:
<link data-turbolinks-track="true" href="/stylesheets/application.css" media="all" rel="stylesheet" />
<script data-turbolinks-track="true" src="/javascripts/application.js"></script>
On development, this renders as:
<link data-turbolinks-track="true" href="/assets/application.css" media="all" rel="stylesheet" />
<script data-turbolinks-track="true" src="/assets/application.js"></script>
which works.
I have config.assets.compile set to false, but even running rake assets:precompile has no effect - the rails app is still missing /javascripts/application.js and /stylesheets/application.css on staging and production.
Why aren't those assets compiling to /public?