https://github.com/yusukebe/remix-on-nextjs
Remix runs on Next.js Edge API Routes
https://github.com/yusukebe/remix-on-nextjs
Last synced: about 1 year ago
JSON representation
Remix runs on Next.js Edge API Routes
- Host: GitHub
- URL: https://github.com/yusukebe/remix-on-nextjs
- Owner: yusukebe
- Created: 2023-05-05T14:57:26.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-05T15:01:42.000Z (about 3 years ago)
- Last Synced: 2025-03-29T06:33:18.712Z (about 1 year ago)
- Language: TypeScript
- Size: 130 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remix on Next.js
Remix application runs on [Edge API Routes](https://nextjs.org/docs/pages/building-your-application/routing/api-routes#edge-api-routes) in Next.js.
## Demo
*
## Screenshot
`env` has `NEXT_RUNTIME:"edge"`, but the page is generated by Remix app.

## Directory structure
```
.
├── README.md
├── next-env.d.ts
├── next.config.js
├── package.json
├── pages // <=== Next.js
│ ├── _app.tsx
│ ├── _document.tsx
│ ├── api
│ │ └── [...route].ts // <=== Edge API Routes
│ └── index.tsx
├── public
├── remix.app // <=== Remix App
│ ├── entry.client.tsx
│ ├── entry.server.tsx
│ ├── root.tsx
│ └── routes
│ └── $.tsx
├── remix.config.js
├── remix.env.d.ts
├── tsconfig.json
└── yarn.lock
```
## Author
Yusuke Wada
## License
MIT