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
--public-url
When using --public-url, the following works:
<script type="module" src="./x.ts"></script>
but the following will ignore the public URL and load all dependencies from /:
/
<script type="module"> import { f } from "./x.ts"; f(); </script>
The text was updated successfully, but these errors were encountered:
What is the problem here? Please provide a reproduction.
Sorry, something went wrong.
Hi! Did you try the example I gave above and failed to replicate? x.ts has to be large enough not to be fully inlined.
No branches or pull requests
When using
--public-url
, the following works:but the following will ignore the public URL and load all dependencies from
/
:The text was updated successfully, but these errors were encountered: