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

feat(netlify): use new @netlify/vite-plugin-react-router #40

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

Conversation

serhalp
Copy link

@serhalp serhalp commented Dec 17, 2024

See https://github.com/netlify/remix-compute/tree/main/packages/vite-plugin-react-router.

This removes all the custom Netlify stuff from the template except the netlify.toml and the Vite plugin. 🎉

Comment on lines 9 to 14
# Set immutable caching for static files, because they have fingerprinted filenames

[[headers]]
for = "/assets/*"
[headers.values]
"Cache-Control" = "public, max-age=31560000, immutable"
Copy link
Author

Choose a reason for hiding this comment

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

This isn't needed, since these assets are in the publish dir (build/client) and uploaded to the CDN at deploy time and served statically

@TrySound
Copy link

I get this error

> react-router dev

Error: Could not determine server runtime. Please install @react-router/node, or provide a custom entry.server.tsx/jsx file in your app directory.

@serhalp serhalp force-pushed the feat/simplify-netlify-template branch from e3735ef to dedf7c7 Compare December 19, 2024 21:02
@serhalp
Copy link
Author

serhalp commented Dec 19, 2024

Thank you @TrySound! It looks like I went a bit overboard with removing unused dependencies. It should be fixed now!


export default async (request: Request, context: Context) => {
return requestHandler(request, {
VALUE_FROM_NETLIFY: "Hello from Netlify",
Copy link
Contributor

Choose a reason for hiding this comment

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

VALUE_FROM_NETLIFY is still referenced in app/routes/home.tsx, but now that the server app file has been removed that context isn't getting set anywhere. Part of the value proposition with React Router framework is that it produced a request handler that can be plugged into any server.

With the new approach you are proposing here, how would I define load context like VALUE_FROM_NETLIFY?

Copy link
Author

@serhalp serhalp Dec 27, 2024

Choose a reason for hiding this comment

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

The Vite plugin merges the Netlify function context with the app load context (this is copied pretty much as-is from our Remix plugin). You can also see e2e test coverage of this here.

I could be misunderstanding though! Can you give a more concrete example of what a user would be trying to accomplish here?

Copy link
Author

Choose a reason for hiding this comment

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

friendly bump @pcattori 😄

Copy link
Contributor

Choose a reason for hiding this comment

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

Looks like tests are failing for the same reason: VALUE_FROM_NETLIFY is expected to exist, but it is not setup anywhere anymore.

The idea here was to show how a user could own their custom server for Netlify and treat React Router as a request handler within server/app.ts, but if I'm understanding correctly, the new Netlify plugin abstracts away the server, so there's no more "custom server" where the user can setup VALUE_FROM_NETLIFY anymore. In other words, the user doesn't have a place to invoke createRequestHandler and provided the load context anymore.

Copy link
Contributor

Choose a reason for hiding this comment

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

Hey @serhalp I'd love to get this PR merged in.

Like @pcattori asked, is there no place to invoke createRequestHandler and provided the load context anymore? If there is we would like to show this is accomplished in our template, which will also fix the broken test

for = "/assets/*"
[headers.values]
"Cache-Control" = "public, max-age=31560000, immutable"
command = "react-router dev"
Copy link

Choose a reason for hiding this comment

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

@serhalp Now I get all css and js 404 when running npx netlify-cli dev

TrySound added a commit to webstudio-is/webstudio that referenced this pull request Feb 2, 2025
- added netlify template for react-router based on
remix-run/react-router-templates#40
- fixed images optimization on deployed site (legacy templates still
broken)
- added deploy script

Can be tested with `npx [email protected]`

Gonna remove legacy netlify templates in separate PR

<img width="578" alt="image"
src="https://github.com/user-attachments/assets/2d19de74-36be-48a0-8511-9ce1665b755d"
/>
@serhalp serhalp force-pushed the feat/simplify-netlify-template branch from dedf7c7 to f9a1078 Compare March 21, 2025 15:29
@serhalp serhalp requested a review from pcattori March 21, 2025 15:31
@serhalp
Copy link
Author

serhalp commented Mar 30, 2025

@pcattori friendly bump!

@pcattori
Copy link
Contributor

pcattori commented Apr 3, 2025

@serhalp , just a heads up: I sent you a message in Discord so we can discuss/collab the approach more before deciding on what the code should look like

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.

4 participants