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

Fix Vite issues with SolidStart #16052

Merged
merged 7 commits into from
Jan 30, 2025
Merged

Fix Vite issues with SolidStart #16052

merged 7 commits into from
Jan 30, 2025

Conversation

philipp-spiess
Copy link
Member

@philipp-spiess philipp-spiess commented Jan 30, 2025

Fixes #16045

This PR fixes two Vite issues found with SolidStart:

  • SolidStart seems to emit an empty HTML chunk (where the content is literally just /) with no pathname. Since we use the path to generate an id for HTML chunks, this would currently cause a crash. This was reported in @tailwindcss/vite v4.0.1 not working Cannot read properties of undefined (reading 'includes') #16045
  • While testing the fix for the above, we also found that hot reloading was not working in SolidStart since 4.0.0-alpha.22. After doing some bisecting we found that this is happening as SolidStart has the same module ID in different servers and we were invalidating the root when we shouldn't. After trying to restructure this code so that it only cleans up the root when it is no longer part of any server, we noticed some other compatibility issues with Nuxt and SvelteKit. It seems that the safest bet is to no longer update a root at all during rebuilds in the SSR step. This makes invalidateAllRoots a function that only notifiers the servers about a change which is conceptually also less confusing.

Test plan

@philipp-spiess philipp-spiess changed the title WIP Fix Vite issues with SolidStart Jan 30, 2025
@philipp-spiess philipp-spiess marked this pull request as ready for review January 30, 2025 12:15
@philipp-spiess philipp-spiess requested a review from a team as a code owner January 30, 2025 12:15
Copy link
Member

@RobinMalfait RobinMalfait left a comment

Choose a reason for hiding this comment

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

Now that we don't remove any roots anymore, I'm not sure how this will behave over a longer time (memory wise). But the only real issue would be if you create a lot of new CSS files I think anyway so should be fine?

Left a few comments

Comment on lines +75 to +76
TEST: 'false', // VERY IMPORTANT OTHERWISE YOU WON'T GET OUTPUT
NODE_ENV: 'development',
Copy link
Member

Choose a reason for hiding this comment

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

😍

Comment on lines -96 to -99
// Note: Removing this during SSR is not safe and will produce
// inconsistent results based on the timing of the removal and
// the order / timing of transforms.
if (!isSSR) {
Copy link
Member

Choose a reason for hiding this comment

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

I'm not 100% sure why this is safe to do this unconditionally. Is it just because we are never removing any roots anymore?

Copy link
Member Author

Choose a reason for hiding this comment

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

We're no longer calling roots.delete(id) so this check can be removed too, not sure I understand your question correctly tho? 😅

Copy link
Member

Choose a reason for hiding this comment

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

I'm being a dumb dumb, carry on.

@philipp-spiess
Copy link
Member Author

Now that we don't remove any roots anymore, I'm not sure how this will behave over a longer time (memory wise). But the only real issue would be if you create a lot of new CSS files I think anyway so should be fine?

Yeah I think ultimately this is going to need some sort of LRU cache and some extra bookkeeping but it does seem like it's not safe way to assume a module has been downloaded by trying to look at which servers still have the module loaded :/

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.

@tailwindcss/vite v4.0.1 not working Cannot read properties of undefined (reading 'includes')
2 participants