We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d82dad4 commit 054e002Copy full SHA for 054e002
packages/qwik-nx/src/generators/host/files/src/components/remote-mfe/remote-mfe.tsx.template
@@ -22,7 +22,7 @@ export const RemoteMfe = component$(({ remote }: RemoteMfeProps) => {
22
{async (stream) => {
23
// constructing the url by swapping the origin of an actual page's origin with the one from the config
24
// this behavior is expected to be adjusted to feet the specifics of the use case
25
- const url = loc.href.replace(new URL(loc.href).origin, remotesConfig[remote]);
+ const url = loc.url.href.replace(new URL(loc.url.href).origin, remotesConfig[remote]);
26
const init: RequestInit = {
27
headers: { accept: 'text/html' },
28
};
0 commit comments