Changes between Version 1 and Version 2 of Ticket #33494
- Timestamp:
- Feb 5, 2022, 8:25:54 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33494 – Description
v1 v2 53 53 54 54 I think this RegEx is the problem: https://github.com/django/django/blob/main/django/contrib/staticfiles/storage.py#L61. 55 The "matched" group matches nothing. It should be something like 56 {{{ 57 (?m)(?P<matched>[\s\S]*)^(//# (?-i:sourceMappingURL)=(?P<url>.*))$ 58 }}} 59 maybe. I also do not see any sourceMappingURL support for css. Has it been removed? 55 The "matched" group matches nothing. 56 57 I also do not see any sourceMappingURL support for css. Has it been removed or was it never a feature? 60 58 61 59