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
现在大部分应用,对初始HTML要求就是一个<div id="root"></div>,这个id要自己指定
<div id="root"></div>
id
最初我们是想不要有这么个容器,直接document.body.appendChild(document.createElement('div'))就行了,但好像和微服务整合的时候不行,所以得加这功能
document.body.appendChild(document.createElement('div'))
The text was updated successfully, but these errors were encountered:
feat(build): 增加配置支持生成HTML时注入应用容器div (#50)
49633c5
No branches or pull requests
现在大部分应用,对初始HTML要求就是一个
<div id="root"></div>
,这个id
要自己指定最初我们是想不要有这么个容器,直接
document.body.appendChild(document.createElement('div'))
就行了,但好像和微服务整合的时候不行,所以得加这功能The text was updated successfully, but these errors were encountered: