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
This is almost the same as #16, but in this case it happens when both clean and inline options are set to true.
clean
inline
true
With this config:
_habitat.render({ inline: false, clientSpecified: true, clean: true });
This will work:
<div class="container"> <div>LOADING...</div> <script type="application/json"> { "token": "kdj4JLH$Kjhdljkio8erO", } </script> </div> <script async src="/bundle.js" data-mount-in=".container"></script>
But if you config it like this:
_habitat.render({ inline: true, clean: true });
The following implementation will remove the props.
<div class="container"> <div>LOADING...</div> <script type="application/json"> { "token": "kdj4JLH$Kjhdljkio8erO", } </script> <script async src="/bundle.js"></script> </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is almost the same as #16, but in this case it happens when both
clean
andinline
options are set totrue
.With this config:
This will work:
But if you config it like this:
The following implementation will remove the props.
The text was updated successfully, but these errors were encountered: