You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<head><basedata-trunk-public-url />
<!--Some elements omitted for simplicity--><linkdata-trunkhref="styles/styles.scss" rel="scss"></head>
This head of index.html is converted to
<head><basehref="/"><!--Some elements omitted for simplicity--><linkrel="stylesheet" href="styles-c779a680004c93da.css"><scripttype="module">importinitfrom'/index-d59ae4335718e745.js';init('/index-d59ae4335718e745_bg.wasm');</script></head>
Here, the link for stylesheet has a relative url but js and wasm files have absolute urls. The URL for stylesheet should also be absolute (with maybe an option to make it relative? I don't see where that would be needed though.)
The text was updated successfully, but these errors were encountered:
Hmm, yea ... they should definitely be absolute. And actually, they should include the public-url as the base if one is provided, which is what the WASM pipeline does. Will fix this and push it as 0.7.2.
This ensures that all generated assets — CSS, SASS/SCSS, icons &c — are
all properly rooted to the configured `public-url`, which defaults to
`/`.
closes#78
This
head
ofindex.html
is converted toHere, the
link
for stylesheet has a relative url but js and wasm files have absolute urls. The URL for stylesheet should also be absolute (with maybe an option to make it relative? I don't see where that would be needed though.)The text was updated successfully, but these errors were encountered: