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
用cli生成的项目在运行时报错 VM650:2 未找到 plugin.json 中的定义的 publicComponents "components/list491edbce/list" 对应的 JSON 文件 稍微追了一下,webpack-plugin/lib/json-compiler 文件25行 const rootName = this._compilation._preparedEntrypoints[0].name 来判断是否为app文件并不准确,导致在113行上判断 if (resourcePath === rootName) 时rootName与resourcePath相等了,同为组件名,从而未生成组件的json文件。 具体是哪次做了shift操作?还是组件进入队列的优先级变高了没往下追 是只有我才有的问题吗?
The text was updated successfully, but these errors were encountered:
好像是我选择了plugin project模式才会这样
Sorry, something went wrong.
v1.0.13已修复,感谢反馈~
No branches or pull requests
用cli生成的项目在运行时报错
VM650:2 未找到 plugin.json 中的定义的 publicComponents "components/list491edbce/list" 对应的 JSON 文件
稍微追了一下,webpack-plugin/lib/json-compiler 文件25行
const rootName = this._compilation._preparedEntrypoints[0].name
来判断是否为app文件并不准确,导致在113行上判断
if (resourcePath === rootName)
时rootName与resourcePath相等了,同为组件名,从而未生成组件的json文件。
具体是哪次做了shift操作?还是组件进入队列的优先级变高了没往下追
是只有我才有的问题吗?
The text was updated successfully, but these errors were encountered: