# Hotwire-rails with asset pipeline: No css in devtools

**URL:** https://discuss.hotwired.dev/t/hotwire-rails-with-asset-pipeline-no-css-in-devtools/3481
**Category:** General
**Created:** [November 15, 2021, 12:35pm UTC](https://discuss.hotwired.dev/t/hotwire-rails-with-asset-pipeline-no-css-in-devtools/3481 "2021-11-15T12:35:43Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![alanq](https://yyz1.discourse-cdn.com/flex027/user_avatar/discuss.hotwired.dev/alanq/32/2204_2.png) [@alanq](https://discuss.hotwired.dev/u/alanq)
#### Post date: [November 15, 2021, 12:35pm UTC](https://discuss.hotwired.dev/t/hotwire-rails-with-asset-pipeline-no-css-in-devtools/3481/1 "2021-11-15T12:35:44Z")

</div>

Using latest `hotwire-rails` (and manually updating `turbo-rails` to v0.8.3) with `importmap-rails` 0.8.2 with asset pipeline (no webpacker)

In Firefox dev tools, the Debugger only lists my JS files, the stylesheets are missing.  
The css is loaded, I can see it in Style Editor. Any tips how to see stylesheets in Debugger as normal? Is importmap-rails related to stylesheets?

**Update** : application.css **is** shown in Chrome & Chromium, so it’s just a Firefox issue. (sorry maybe this post isn’t really relevant here)

---

<div class="post-metadata">

### Author: ![tleish](https://yyz1.discourse-cdn.com/flex027/user_avatar/discuss.hotwired.dev/tleish/32/920_2.png) [@tleish](https://discuss.hotwired.dev/u/tleish)
#### Post date: [November 15, 2021, 3:33pm UTC](https://discuss.hotwired.dev/t/hotwire-rails-with-asset-pipeline-no-css-in-devtools/3481/2 "2021-11-15T15:33:47Z")

</div>

how are you loading the stylesheet(s)?

---

<div class="post-metadata">

### Author: ![alanq](https://yyz1.discourse-cdn.com/flex027/user_avatar/discuss.hotwired.dev/alanq/32/2204_2.png) [@alanq](https://discuss.hotwired.dev/u/alanq)
#### Post date: [November 15, 2021, 4:04pm UTC](https://discuss.hotwired.dev/t/hotwire-rails-with-asset-pipeline-no-css-in-devtools/3481/3 "2021-11-15T16:04:14Z")

</div>

In the layout, conventional asset pipeline link to the app/assets/stylesheets/application.scss that has @import statements in it  
`<%= stylesheet_link_tag 'application', media: 'all', 'data-turbo-track': 'reload' %>`

---

<div class="post-metadata">

### Author: ![tleish](https://yyz1.discourse-cdn.com/flex027/user_avatar/discuss.hotwired.dev/tleish/32/920_2.png) [@tleish](https://discuss.hotwired.dev/u/tleish)
#### Post date: [November 15, 2021, 4:31pm UTC](https://discuss.hotwired.dev/t/hotwire-rails-with-asset-pipeline-no-css-in-devtools/3481/4 "2021-11-15T16:31:09Z")

</div>

This is because Firefox network panel only shows responses from the server, it does not show non-requested browser cached assets (like chrome does).

see: [764958 - Network monitor doesn’t show network requests for cached content](https://bugzilla.mozilla.org/show_bug.cgi?id=764958)

If you check the box “Disable Cache” in the network panel you will then see the stylesheet loading from the server.
