Merged
Conversation
✅ Deploy Preview for vite-docs-main ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
4 tasks
bluwy
reviewed
Jun 30, 2022
bluwy
previously approved these changes
Jun 30, 2022
Member
Author
|
Alternative for the API, export default defineConfig(({ command, mode, build: { ssr }}) => {
// ...
}The issue that I see is that people without TS may be confused by using So I prefer we keep the current |
Member
Author
|
Modified the PR so |
bluwy
reviewed
Jul 3, 2022
Co-authored-by: Bjorn Lu <[email protected]>
patak-cat
commented
Jul 3, 2022
bluwy
approved these changes
Jul 3, 2022
4 tasks
9 tasks
Member
Author
|
There seems to be little usage for this feature. We opened a discussion to check if we should stabilize or deprecate it in Vite 5: Are you currently using this feature @Kingdutch? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #8835
Description
Adds a flag to apply conditional configuration depending on SSR build. This doesn't apply for SSR dev, as the config is shared for it.
Should we pass the value of
config.build.ssrinstead, so the user can also config depending on the SSR entry?Edit: Blu said yes, it is now implemented as
string | boolean👍🏼What is the purpose of this pull request?