Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danny-yamamoto/my-portfolio-remix-vite
I'll use Vite!
https://github.com/danny-yamamoto/my-portfolio-remix-vite
cloudflare remix tailwindcss vite
Last synced: 14 days ago
JSON representation
I'll use Vite!
- Host: GitHub
- URL: https://github.com/danny-yamamoto/my-portfolio-remix-vite
- Owner: danny-yamamoto
- Created: 2024-01-29T02:05:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-18T05:08:27.000Z (11 months ago)
- Last Synced: 2024-12-08T08:09:55.650Z (2 months ago)
- Topics: cloudflare, remix, tailwindcss, vite
- Language: TypeScript
- Homepage: https://my-portfolio-remix-vite.pages.dev/portfolio
- Size: 372 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to Remix + Vite!
📖 See the [Remix docs](https://remix.run/docs) and the
[Remix Vite docs](https://remix.run/docs/en/main/future/vite) for details on
supported features.## Typegen
Generate types for your Cloudflare bindings in `wrangler.toml`:
```sh
npm run typegen
```You will need to rerun typegen whenever you make changes to `wrangler.toml`.
## Development
Run the Vite dev server:
```sh
npm run dev
```To run Wrangler:
```sh
npm run build
npm run start
```## Deployment
> [!WARNING]
> Cloudflare does _not_ use `wrangler.toml` to configure deployment bindings.
> You **MUST** [configure deployment bindings manually in the Cloudflare
> dashboard][bindings].First, build your app for production:
```sh
npm run build
```Then, deploy your app to Cloudflare Pages:
```sh
npm run deploy
```[bindings]: https://developers.cloudflare.com/pages/functions/bindings/