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
Currently relative url without a base is not supported, this will panic when the macro tries to parse the url:
declare_resources!{ my_lib "/my-lib.js" }
explicitly specify the script type so the macro doesn't try to parse the url:
declare_resources!{ my_lib js "/my-lib.js" }
The text was updated successfully, but these errors were encountered:
f6fbb9b
No branches or pull requests
Currently relative url without a base is not supported, this will panic when the macro tries to parse the url:
Workaround
explicitly specify the script type so the macro doesn't try to parse the url:
The text was updated successfully, but these errors were encountered: