You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The @importCSSat-rule is used to import style rules from other valid stylesheets. An @import rule must be defined at the top of the stylesheet, before any other at-rule (except @charset and @layer) and style declarations, or it will be ignored.
is designed to look for @import url() syntax... with the regex https://regex101.com/r/BOJ3vG/1 and thats why it works when there is a @import url() syntax but not when the url function is missing.
Uh oh!
There was an error while loading. Please reload this page.
Symfony version(s) affected
7.3.0
Description
In my app.css, I put
and in test.css:
And the background is still white
=> My browser try to load
https://127.0.0.1:8000/assets/styles/test.css
, but faces a 404.I'm using symfony-cli, but it's the same with caddy
Note
I have another issue this relative URL, but I cannot reproduce it because of this bug.
How to reproduce
See this repo
The text was updated successfully, but these errors were encountered: