I have an @import rule within a CSS file in my asset path:
// /app/assets/product/ow.css.scss
@import 'foo.css.scss';
And I put foo.css.scss inside the same folder. Rails is automatically pulling in foo.css since it's in the asset path, and then it's duplicating the request to pull in foo.css because of the import.
What's the correct way to handle CSS @import rules within the Rails framework?