-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
fix: remove ":$" from virtual module ids to allow dev server to work with proxies #12157
fix: remove ":$" from virtual module ids to allow dev server to work with proxies #12157
Conversation
🦋 Changeset detectedLatest commit: 2eab34c The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
@dummdidumm @Rich-Harris @benmccann any chance someone can take a look at this? as it stands, version 1.25.1 is the latest version I can use without running into this issue. If you ever need to stitch multiple sites behind a reverse proxy while developing locally, you will run into this issue. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense to me, though waiting for another pair of eyes here
preview: https://svelte-dev-git-preview-kit-12157-svelte.vercel.app/ this is an automated message |
Summary:
This PR addresses an issue where Nginx, and potentially other reverse proxies, do not process URLs containing the sequence
:$
. Specifically, Nginx returns a "400 Bad Request" error when it encounters such URLs. This conflict arises when using the Vite development server with SvelteKit, where certain virtual modules (e.g.,$env/dynamic/public
and$env/static/public
) are externally represented with an ID that includes:$
.Details:
In the Vite dev server, some SvelteKit virtual modules are resolved to IDs such as
\0virtual:$env/dynamic/public
. The presence of:$
in these IDs causes compatibility issues with Nginx, which fails to handle these URLs correctly.Solution:
This PR modifies the naming convention for virtual modules in the Vite development environment. The proposed change is to avoid starting virtual module names with
$
, thereby preventing the inclusion of:$
in the module IDs. This adjustment ensures that the Vite dev server can operate behind Nginx or similar reverse proxies without encountering HTTP 400 errors.Impact:
Adopting this naming convention will allow developers to run the Vite development server behind Nginx and other reverse proxies seamlessly, improving development workflow and compatibility.
Please don't delete this checklist! Before submitting the PR, please make sure you do the following:
Tests
pnpm test
and lint the project withpnpm lint
andpnpm check
Changesets
pnpm changeset
and following the prompts. Changesets that add features should beminor
and those that fix bugs should bepatch
. Please prefix changeset messages withfeat:
,fix:
, orchore:
.Edits