Example app for Webflow Cloud: a minimal Next.js + React project with OpenNext for Cloudflare and Webflow deploy tooling.
.
├── public/
│ ├── next.svg
│ └── webflow.svg
├── src/
│ └── app/
│ ├── favicon.ico
│ ├── globals.css
│ ├── layout.tsx
│ └── page.tsx
├── nextjs/
│ ├── public/
│ │ └── next.svg
│ ├── src/
│ │ └── app/
│ │ ├── favicon.ico
│ │ ├── globals.css
│ │ ├── layout.tsx
│ │ └── page.tsx
│ ├── cloudflare-env.d.ts
│ ├── eslint.config.mjs
│ ├── next.config.ts
│ ├── open-next.config.ts
│ ├── package.json
│ ├── postcss.config.mjs
│ ├── tsconfig.json
│ ├── webflow.json
│ └── wrangler.json
├── cloudflare-env.d.ts
├── eslint.config.mjs
├── next.config.ts
├── open-next.config.ts
├── package.json
├── postcss.config.mjs
├── tsconfig.json
├── webflow.json
└── wrangler.json
| Command | Action |
|---|---|
npm install |
Install dependencies. |
npm run dev |
Start the Next.js dev server (http://localhost:3000). |
npm run build |
Create a production build. |
npm run start |
Run the production server locally (after npm run build). |