-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the grid support causes .map files to contain <no source> in sources list #1290
Comments
@ekatioz thanks for the report. Seems like Grid Layout code forgets to set Can you use source map visualization to find what nodes have no source? |
Unfortunately not. The tool you linked can't process the mapping file and gives me an error: "Source '<no source>' missing". |
@ekatioz you can try another vizualizer |
Weird results... All lines were mapped to the expected counterpart in the generated CSS file. But the lines
were mapped to "<no source>" as well. Even the sourceMappingURL is linked in the Source Map... For reference, my files: Original:
Generated:
Source Map:
|
Can you try to look at Seems like we just forget to set |
I have a simple .css with grid-areas:
and I process it using
The output .css is as expected, but the output .css.map is not:
As you see, there is a
"<no source>"
entry in"sources"
and anull
in"sourcesContent"
.This is not a huge problem, but it causes 404s because Chrome is trying to get
http://some.domain.com/<no source>
.The text was updated successfully, but these errors were encountered: