this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rename `next` directory to `examples`

authored by

Peter Bacon Darwin and committed by
Victor Berchet
f5ef97c6 37494418

+2 -2
+1 -1
README.md
··· 10 10 The repository contains two directories: 11 11 12 12 - `builder` containing a package that can be used to build Cloudflare workers compatible output from Next.js applications 13 - - `next` containing Next.js application that use the above mentioned builder (currently it only contains `api`) 13 + - `examples` containing Next.js applications that use the above mentioned builder. 14 14 15 15 ## How to try out/develop in the repository 16 16
next/api/.gitignore examples/api/.gitignore
next/api/README.md examples/api/README.md
next/api/app/api/hello/route.js examples/api/app/api/hello/route.js
next/api/app/layout.js examples/api/app/layout.js
next/api/app/page.js examples/api/app/page.js
next/api/e2e-tests/base.spec.ts examples/api/e2e-tests/base.spec.ts
next/api/next.config.mjs examples/api/next.config.mjs
next/api/package.json examples/api/package.json
next/api/playwright.config.ts examples/api/playwright.config.ts
next/api/public/.gitkeep examples/api/public/.gitkeep
next/api/wrangler.toml examples/api/wrangler.toml
+1 -1
pnpm-workspace.yaml
··· 1 1 packages: 2 2 - "builder" 3 - - "next/*" 3 + - "examples/*"