remix
remix copied to clipboard
Build Better Websites. Create modern, resilient user experiences with web fundamentals.
### What version of Remix are you using? 1.5.1 ### Steps to Reproduce Create a route structure like so: ``` app/routes ├── slug │ ├── __bar │ │ └── bar.tsx...
### What version of Remix are you using? 1.7.5 ### Steps to Reproduce I made a repro, with a record ;) https://github.com/rphlmr/unexpected-transition-in-action-redirects Given these 3 routes: `/` `/form/index` `/form/end` `/form/index`...
Problem : - Setting a relative "publicPath" in remix.config produce error on Safari.  Cause : - Relative import ignore base path in safari : https://bugs.webkit.org/show_bug.cgi?id=201692 Solution : - Create...
### What version of Remix are you using? 1.9.0 ### Steps to Reproduce Add a package.json script `build` that runs `remix build`, and another that runs `npm-run-all -l build`. ###...
### What version of Remix are you using? 1.6.1 ### Steps to Reproduce 1. Add a `` to an active route. 2. Add some query params to your URL ie...
### What version of Remix are you using? 1.4.0 ### Steps to Reproduce 1. Set `HOST` envrionment variable to anything that is an invalid hostname. An example: `http://localhost:3000` 2. Run...
Related issue: #4993 - [ ] Docs - [x] Tests Testing Strategy: `yarn bug-report-test` Expected: no errors Actual: ``` at TLSSocket.onSocketClose (/Users/tarng/Code/oss/remix/node_modules/@remix-run/web-fetch/src/fetch.js:342:33) at TLSSocket.emit (node:events:538:35) at node:net:687:12 at TCP.done (node:_tls_wrap:580:7)...
Hello, # Context When using HTTP/2 we can optimize the first loading with HTTP/2 Server Push `Link` header. I had to implement it for a project and I wonder if...
This will remove some deprecation warnings when installing `@remix-run/dev`, but most importantly: this is necessary for #5222
Currently, all session-related functions use the default `SessionData` interface that is defined as `{ [key: string]: any }`. This works fine, but doesn't provide any type information for TypeScript when...