Skip to content

Commit

Permalink
example: add next config to hello-world app (vercel#76022)
Browse files Browse the repository at this point in the history
### Why?

Since the `hello-world` app is also used for the default debugging app,
I used to add a config when testing a relevant feature and removed it
after. Hence, just added a config.


https://github.com/vercel/next.js/blob/959a31214341d1ea00c0f00bcc8fc6f6a9c7b6fc/.vscode/launch.json#L11
  • Loading branch information
devjiwonchoi authored Feb 13, 2025
1 parent 785e966 commit d9b27c9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/hello-world/next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
};

export default nextConfig;

0 comments on commit d9b27c9

Please sign in to comment.