···2828 export default nextConfig;
2929 ```
30303131-- add "node-url": "npm:url@^0.11.4" to the package.json
3131+- add the following devDependency to the package.json:
3232+3333+ ```json
3434+ "node-url": "npm:url@^0.11.4",
3535+ "wrangler": "^3.77.0"
3636+ ```
3737+3238- add a wrangler.toml int the generated app
33393440 ```toml
3541 #:schema node_modules/wrangler/config-schema.json
3636- name = "api"
4242+ name = "<app-name>"
3743 main = ".worker-next/index.mjs"
38443945 compatibility_date = "2024-08-29"
···11+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22+33+# dependencies
44+/node_modules
55+/.pnp
66+.pnp.js
77+.yarn/install-state.gz
88+99+# testing
1010+/coverage
1111+1212+# next.js
1313+/.next/
1414+/out/
1515+1616+# production
1717+/build
1818+1919+# misc
2020+.DS_Store
2121+*.pem
2222+2323+# debug
2424+npm-debug.log*
2525+yarn-debug.log*
2626+yarn-error.log*
2727+2828+# local env files
2929+.env*.local
3030+3131+# vercel
3232+.vercel
3333+3434+# typescript
3535+*.tsbuildinfo
3636+next-env.d.ts
+36
examples/create-next-app/README.md
···11+This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
22+33+## Getting Started
44+55+First, run the development server:
66+77+```bash
88+npm run dev
99+# or
1010+yarn dev
1111+# or
1212+pnpm dev
1313+# or
1414+bun dev
1515+```
1616+1717+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
1818+1919+You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
2020+2121+This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
2222+2323+## Learn More
2424+2525+To learn more about Next.js, take a look at the following resources:
2626+2727+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
2828+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
2929+3030+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
3131+3232+## Deploy on Vercel
3333+3434+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
3535+3636+Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.