Changes between Version 1 and Version 2 of Ticket #33494


Ignore:
Timestamp:
Feb 5, 2022, 8:25:54 AM (2 years ago)
Author:
Felix Kleinekathöfer
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33494 – Description

    v1 v2  
    5353
    5454I 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?
     55The "matched" group matches nothing.
     56
     57I also do not see any sourceMappingURL support for css. Has it been removed or was it never a feature?
    6058
    6159
Back to Top