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
If i wanted to dynamically (ie, not a static specifier) get an asset reference to something I'd otherwise use import() with, how do i do that?
import()
The text was updated successfully, but these errors were encountered:
I just found https://github.com/sebmarkbage/ecmascript-asset-references#dynamic-asset-resolution - it seems like the static and dynamic forms should mirror each other, just like import vs import()?
import
Sorry, something went wrong.
Yea. Except it won’t work without a keyword. So maybe import asset x from “x” and import.asset(“x”)?
import asset x from “x”
import.asset(“x”)
Sure - or import.asset x from 'x' and import.asset('x'), and then it's even closer?
import.asset x from 'x'
import.asset('x')
No branches or pull requests
If i wanted to dynamically (ie, not a static specifier) get an asset reference to something I'd otherwise use
import()
with, how do i do that?The text was updated successfully, but these errors were encountered: