Skip to content
New issue

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

make sure protocol is set for viteServerUri #99

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

franzkugelmann
Copy link
Contributor

[BUGFIX] make sure protocol is set for viteServerUri

[BUGFIX] make sure protocol is set for viteServerUri
@franzkugelmann
Copy link
Contributor Author

we experienced some cases where the browser blocked uris starting with // instead of https://

@@ -26,7 +26,7 @@ public function __invoke(PolicyMutatedEvent $event): void
$request = $event->request ?? $GLOBALS['TYPO3_REQUEST'] ?? new ServerRequest();
$viteServerUri = $this->viteService->determineDevServer($request);
$uris = [
new UriValue((string)$viteServerUri),
new UriValue('https://' . $viteServerUri->getHost() . ':' . $viteServerUri->getPort()),
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm, I wouldn't want to hard-code the protocol here. Maybe we could define it as a fallback? Or even better: Add both http and https?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants