-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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: overwrite configEnv.mode if the user explicitly set mode option (fix #4441) #4437
Conversation
@@ -270,6 +272,7 @@ export async function resolveConfig( | |||
|
|||
// user config may provide an alternative mode | |||
mode = config.mode || mode | |||
configEnv.mode = mode |
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.
This looks ok here. But I'm a bit confused by the logic of the previous line.
According to https://github.com/iheyunfei/vite/blob/a7a9a361cf13670c2e241620ddaf15021eda26b5/packages/vite/src/node/config.ts#L103, the inline config mode
should be the one winning over the config file mode
, and that is not the case here AFAICS. @AlexandreBonaventure I think you were using this feature, does it works correctly for you when overriding --mode
in the CLI? It should win over the one you used in your config file.
@iheyunfei as a note, it would be good to have an issue for this kind of PR with a reproduction for reference. It is easier to merge PRs when we have a clear bug that they are fixing.
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.
@patak-js Yes, I'm going to raise an issue. For your question, I look down the codes and It won't win over the mode in the config file.
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.
Ya, looks like there are other issues to fix here
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.
Fix it too. After looking back, I found I just solve inconstancy in some cases. Still, there is a case that could not be easily fixed. I will open another issue to describe it.
Fix #4441 .
Description
without this PR. the
mode
andconfigEnv.mode
variables will be inconsistent in some cases.Additional context
I don't quite understand how to add a test for such case.
What is the purpose of this pull request?
Before submitting the PR, please make sure you do the following
fixes #123
).