Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlarky/remix-react-19-template
Remix React 19 Template
https://github.com/jlarky/remix-react-19-template
Last synced: about 1 month ago
JSON representation
Remix React 19 Template
- Host: GitHub
- URL: https://github.com/jlarky/remix-react-19-template
- Owner: JLarky
- Created: 2024-05-19T19:08:22.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-19T19:18:11.000Z (7 months ago)
- Last Synced: 2024-05-19T20:28:14.674Z (7 months ago)
- Language: TypeScript
- Size: 140 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remix with React 19
following this guide https://react.dev/blog/2024/04/25/react-19-upgrade-guide
You can also check out this branch where I was playing with the hydration errors in React 19:
- https://github.com/JLarky/remix-react-19-template/commits/hydration-errors-demo/
## Development
Run the Vite dev server:
```shellscript
bun dev
```## Deployment
First, build your app for production:
```sh
bun run build
```Then run the app in production mode:
```sh
bun start
```Now you'll need to pick a host to deploy it to.
### DIY
If you're familiar with deploying Node applications, the built-in Remix app server is production-ready.
Make sure to deploy the output of `bun build`
- `build/server`
- `build/client`