After configuring my main.css
to import two style sheets using the @import rule, I ran into an issue. The H5BP build script minified and concatenated the main.css
, but the imported files were missing.
I double-checked the build script's config to ensure it was pointing to the correct file, and I even attempted to adjust the paths with no luck.
Here is the content of the main.css:
@import url("../css/html5bp.css");
@import url("../css/styles.css");
Any suggestions or solutions would be greatly appreciated. Thank you in advance.