Skip to content
New issue

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

[Bug]: SVG external references unofficially work with hacks #6965

Open
matthiask opened this issue Jun 27, 2024 · 1 comment
Open

[Bug]: SVG external references unofficially work with hacks #6965

matthiask opened this issue Jun 27, 2024 · 1 comment
Labels
bug Something isn't working same as webpack The behavior is the same as Webpack

Comments

@matthiask
Copy link

System Info

System:
OS: Linux 6.9 Fedora Linux 40 (Workstation Edition)
CPU: (16) x64 11th Gen Intel(R) Core(TM) i7-11700F @ 2.50GHz
Memory: 54.33 GB / 62.62 GB
Container: Yes
Shell: 5.2.26 - /bin/bash
Binaries:
Node: 20.12.2 - /usr/bin/node
Yarn: 4.3.1 - /usr/bin/yarn
npm: 10.5.0 - /usr/bin/npm

Details

It's possible to use url(sprite.svg#icon-1) with rspack. rspack supports using [fragment] in assetModuleFilename even though this isn't mentioned in the module and file context docs: https://www.rspack.dev/config/output#outputassetmodulefilename

However sprite.svg won't be included in the output, but instead the output will contain files with names of sprite.svg#icon-1 (I removed the content hash). The browser strips the fragment when requesting the sprite SVG which leads to 404 errors since the file only exists including the fragment, not without.

If you do not customize assetModuleFilename then the generated CSS will not contain the fragment anymore, which breaks those uses.

Webpack shows the broken behavior too which is confusing because I remember that this has worked at some point in the past. Maybe it rings a bell?

See https://css-tricks.com/svg-use-with-external-reference-take-2/ for why you'd want something like this.

Reproduce link

https://github.com/matthiask/rspack-assetmodulefilename-fragment

Reproduce Steps

  1. pnpm run build
  2. Observe that ls -l rspack-dist/*svg* shows a file with the fragment in the filename
@matthiask matthiask added bug Something isn't working pending triage The issue/PR is currently untouched. labels Jun 27, 2024
@xc2
Copy link
Collaborator

xc2 commented Jun 29, 2024

background: url("compass-2.svg"#logbuch-3-1); should work though it's of invalid css syntax.

@xc2 xc2 added same as webpack The behavior is the same as Webpack and removed pending triage The issue/PR is currently untouched. labels Jun 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working same as webpack The behavior is the same as Webpack
Projects
None yet
Development

No branches or pull requests

2 participants