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
The following setup should reproduce the error:
index.html:
<script src="/platform.js"></script> <link rel="import" href="/elements/vulcanized.html">
vulcanized.html:
<script src="/polymer.js"></script> <polymer-element name="..."> ....
Workaround
Moving the polymer.html import to the main document (and excluding it from vulcanize) clears up the error.
<script src="/platform.js"></script> <link rel="import" href="/polymer.html"> <link rel="import" href="/elements/vulcanized.html">
<polymer-element name="..."> ....
The text was updated successfully, but these errors were encountered:
After more experimenting, switching the polymer.html import to <script src="polymer.js"></script> in the main document causes the error.
<script src="polymer.js"></script>
Sorry, something went wrong.
@azakus and I worked through this. It's another gnarly case of using Vulcanize and paths not getting de-duped properly.
No branches or pull requests
The following setup should reproduce the error:
index.html:
vulcanized.html:
Workaround
Moving the polymer.html import to the main document (and excluding it from vulcanize) clears up the error.
index.html:
vulcanized.html:
The text was updated successfully, but these errors were encountered: