What's Changed
Deprecations:
- Deprecate the use of
${host}in source code that is provided to<live-code>, and instead support${location.<prop>}(f.e.${location.pathname},${location.href}, etc).- Migration: use
${location.origin}in place of${host}.
- Migration: use
- Deprecate
href="/"from being automatically converted tohref="<url>"where<url>is thelocation.originof the wrapping window.- Migration: use a
<base href="...">tag along with${location.<prop>}if needed. If you previously had<base href="/">in an example's source, instead use<base href="${location.origin}">to opt into the same behavior.
- Migration: use a
Full Changelog: v0.6.6...v0.6.7