Open CGNonofr opened 5 months ago
Just realized the build behavior is different than the dev behavior: in build mode, asset loaded with the new URL(...)
syntax never get transformed, so a third solution can be to homogenize behaviors and consider it as a bug?
I also would like ?raw&url
to work. It is implemented here but doesn't support combining.
Furthermore, indeed dev and build behavior is different regarding post-processing.
I think the assets plugin should work as follows:
raw
and/or url
query parameters are present, strip them, this.resolve the resulting id and and prefix it with \0(raw|url|rawurl):
\0
ensures we get a look first
raw
, read the rest of the id as a file from disk, otherwise use this.load on the rest of the id. (This should in theory transform it but not sure if that works)url
, store the loaded data as an asset and generate the URL as beforeraw
, generate a JS file as before\0
ensures that the load result doesn't get transformed furtherThis way, you can choose whether to process the file or not.
Does that seem right?
also, the placeholder should be something like http://__VITE_ASSET...
so that is valid inside url()
in css (see #17559)
Description
In my app, I use the
new URL('...', import.meta.url)
syntax to get some assets URLs, including some CSS files. I then reference that asset in a document inside an iframe.The problem is: vite is transforming my css files to resolve image references (
url(<image path>)
). While it's fine and expected in most cases, it's a big problem in my specific case, because the content of the css file is then digested by some code that already tries to resolve the real image urls inside the css at runtime.I didn't find any way currently, even hacky, to prevent vite from trying to transform some asset files using the
new URL(..., import.meta.url)
syntax (except renaming the file to change its extension)There is an
assetsInclude
option that seems to do what I want, but it doesn't seem to support thenew URL(...)
syntax as it seems to transform my asset to an html page displaying aUnexpected end of input
error :thinking:Suggested solution
I see 2 possible solutions:
new URL('./myImage.png?raw', import.meta.url)
)assetsInclude
work withnew URL(...)
syntax if it's relevant, or add another optionAlternative
No response
Additional context
No response
Validations