JetBrains / svg-sprite-loader

Webpack loader for creating SVG sprites.
MIT License
2.01k stars 272 forks source link

Invalid paths in css file #477

Open ezoterik opened 2 years ago

ezoterik commented 2 years ago

Do you want to request a feature, report a bug or ask a question?

Bug or question

What is the current behavior?

After runing npm run dev I get (in dist/css/main.css):

body {
    background-image: url(b9a42b87318abfe2a6e6.svg);
}

What is the expected behavior?

body {
    background-image: url("./images/sprite.svg#error404");
}

If the current behavior is a bug, please provide the steps to reproduce, at least part of webpack config with loader configuration and piece of your code. The best way is to create repo with minimal setup to demonstrate a problem (package.json, webpack config and your code). It you don't want to create a repository - create a gist with multiple files

https://github.com/ezoterik/test-svg

If this is a feature request, what is motivation or use case for changing the behavior?

Please tell us about your environment:

Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)

Perhaps I am doing something wrong?

bryanpizzillo commented 2 years ago

@ezoterik Did you ever happen to find a fix for this? I have been trying to fight the SpriteLoaderPlugin and css-loader to get a proper URL. I have been trying to figure out what is going on, and I have ended up with:

3mg commented 1 year ago

Same issue, did someone figured out how to use url in css with this plugin ?