Michael Carter
Michael Carter
If we're going to support having duplicate items (e.g. multiple `og:image` entries), it's going to be difficult to deal with child route merges. How do you know if these entries...
They had started removing `cross-env NODE_ENV=development` from the *package.json* scripts. Due to the order in which things were occurring, the internal `` component wasn't getting the property environment. Re-add the...
`` is a simple component. You can simply inline it in your *root* route. ```ts export const LiveReload = process.env.NODE_ENV !== "development" ? () => null : function LiveReload({ port...
I believe there was a bug in the dev tool in that it wasn't passing the `REMIX_DEV_SERVER_WS_PORT` variable to the compiler. Have you tried the latest version? Remix now gets...
@LukeXF Are you on Mac or Windows? Did you add/change `devServerPort` in remix.config? Also check to see if `REMIX_DEV_SERVER_WS_PORT` environment variable is defined. Worst case, just update your `dev` script...
Unfortunately I think we're going to continue to get a lot of these weird edge cases. The issue is that Remix is trying to convert your *actual* data type, with...
Yes, as explained in `remix-typedjson`, it only supports a subset of types: `Date`, `BigInt`, etc. I'm not sure what your custom types look like, so hard to say if it...
Aside from the readConfig test, I haven't added or modified any tests. I'm not really sure the best approach to testing this as it requires verifying `remix dev`, `remix watch`...
Yes there is a difference. The `server` option compiles your server file AND bundles it with your app build (including node_modules) into a single file. The new option is just...
@cliffordfajardo I created a sample showing how to use a custom server file for RAS. It uses SSL and includes `getLoadContext` function. https://github.com/kiliman/remix-ras-server-example