remix
remix copied to clipboard
Build Better Websites. Create modern, resilient user experiences with web fundamentals.
Hydration failed sometimes not always, the diff remixDevTools shows almost is about style attribute.
### Reproduction Sorry, I can't reproduce it in a minimal repo. ### System Info ```shell System: OS: macOS 13.4.1 CPU: (12) arm64 Apple M2 Max Memory: 139.52 MB / 32.00...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.1.0 to 5.1.7. Changelog Sourced from vite's changelog. 5.1.7 (2024-03-24) fix: fs.deny with globs with directories (#16250) (5a056dd), closes #16250 5.1.6 (2024-03-11) chore(deps): update all non-major dependencies...
### Reproduction yarn add quirrel yarn build yarn start ### System Info ```shell Chrome Ubuntu ``` ### Used Package Manager yarn ### Expected Behavior On the dev server its working...
### Reproduction Go to https://stackblitz.com/edit/remix-run-remix-hj7xu8?file=app%2Froutes%2F_common.tsx Click (server:) "one" Wait for deferred content to load (3 seconds) Click (server:) "two" Within the next 3 seconds (before deferred content loader) click (server:)...
### Reproduction https://stackblitz.com/edit/remix-run-remix-yjtvxa?file=app%2Froutes%2F_index.tsx ### System Info ```shell System: OS: Linux 6.9 Arch Linux CPU: (16) x64 AMD Ryzen 7 5800H with Radeon Graphics Memory: 12.35 GB / 27.26 GB Container:...
### What version of Remix are you using? 2.0.1 ### Are all your remix dependencies & dev-dependencies using the same version? - [X] Yes ### Steps to Reproduce I was...
### Reproduction **vite.config.js** ```js import { vitePlugin as remix } from "@remix-run/dev"; import { installGlobals } from "@remix-run/node"; import { defineConfig } from "vite"; installGlobals(); export default defineConfig({ plugins: [remix()],...
When producing deployment/production builds that target Cloudflare, such builds rely on the `/functions` directory, for example see: - [`templates/cloudflare/functions/[[path]].ts`](https://github.com/remix-run/remix/blob/393d70b59d7d24cc6d2655bdd307c5daba4a4b82/templates/cloudflare/functions/%5B%5Bpath%5D%5D.ts) - [`createPagesFunctionHandler`](https://github.com/remix-run/remix/blob/393d70b59d7d24cc6d2655bdd307c5daba4a4b82/packages/remix-cloudflare-pages/worker.ts#L97) Instead of this, builds should use [advanced mode](https://developers.cloudflare.com/pages/functions/advanced-mode/) and...
### Reproduction Go to https://stackblitz.com/edit/remix-run-remix-8frxmh In root.tsx there is a `` element after ``. In routes/_index.tsx there is an ErrorBoundary, and route component throws an error. On page refresh SSR...
Using useEffect for syncing state with props (or other external state) is unnecessary, and can trigger additional renders and potentially flashes of incorrect content. We can use a useState to...