Okay let's say i have an image named test#1234.png, while trying to import it as a:
background: url('./assets/test#1234.png')
I would get this error:
Module not found: Error: Can't resolve './assets/test'
So it wouldn't even read out the whole name in the error, I've tried escaping the hashtag like test/#1234 and also percent encoding it like test%231234 but still no luck, anyone got an idea of what could fix this problem?
NOTE: any other file name that doesn't contain a hashtag works.