vite should not implement query import in itself #4745
tarnishablec
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
#例如想要实现下面
现在这种以query来确定代码加载的实现被放在了vite内置的plugins里
在css plugin的源码里大量的hard code来实现了 ?url ?inline 的特殊情况
比如上面的例子vite会用正则判断出是 lang=scss 然后直接走scss的编译流程
但是,code实际已经transform成"a"了,必然会导致编译报错
#2522 这个问题就出在这里
而且开发者无法像webpack那样使用loader的pitch来跳过内置的plugins
这会导致自定义的插件无法实现自己想要的query loader
难道每次想实现一个scss相关的query都要往vite仓库提pr吗
Beta Was this translation helpful? Give feedback.
All reactions