We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm trying to correclty import a SVG inside a CSS file, this is what I'm doing in my source file:
ul { list-style-image: url('../img/check.svg'); }
and this is what I get as a output:
ul { list-style-image: url("./check-0ecf99f0.svg"); }
I need to reference the file without the hash, just by its simple name check.svg, how can I correctly do so?
check.svg
The text was updated successfully, but these errors were encountered:
I think you would use a function in rollup's assetFileNames output option: https://rollupjs.org/guide/en/#outputassetfilenames
assetFileNames
Sorry, something went wrong.
No branches or pull requests
I'm trying to correclty import a SVG inside a CSS file, this is what I'm doing in my source file:
and this is what I get as a output:
I need to reference the file without the hash, just by its simple name
check.svg
, how can I correctly do so?The text was updated successfully, but these errors were encountered: