### What happened? 错误: <img width="2786" height="626" alt="Image" src="https://github.com/user-attachments/assets/ad850474-2f01-406b-9d1d-4cd702d7d93d" /> 看产物代码可以看到这个 module 以及它的 module factory 被 removeUnusedImports 删了: <img width="3024" height="1078" alt="Image" src="https://github.com/user-attachments/assets/efd74b66-7c87-4087-a62c-5996920cb8e2" /> 这里只有消费,没有注册。从而导致了运行时错误。 配置: ```ts export default { utoopack: { optimization: { removeUnusedImports: false, } }, } ``` 构建正常。 ### Expected result 不应该出现这样的 case。