├── .DS_Store
├── bun.lockb
├── .gitignore
├── public
└── favicon.ico
├── .eslintrc
├── app
├── entry.client.tsx
├── entry.server.tsx
├── root.tsx
└── routes
│ └── index.tsx
├── remix.env.d.ts
├── remix.config.js
├── tsconfig.json
├── package.json
├── start.ts
├── README.md
└── functions
└── [[path]].js
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jacob-ebey/remix-bun/HEAD/.DS_Store
--------------------------------------------------------------------------------
/bun.lockb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jacob-ebey/remix-bun/HEAD/bun.lockb
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
3 | /.cache
4 | /build
5 | /public/build
6 | .env
7 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jacob-ebey/remix-bun/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": ["@remix-run/eslint-config", "@remix-run/eslint-config/node"]
3 | }
4 |
--------------------------------------------------------------------------------
/app/entry.client.tsx:
--------------------------------------------------------------------------------
1 | import { hydrate } from "react-dom";
2 | import { RemixBrowser } from "remix";
3 |
4 | hydrate(