Skip to content

Commit b439dfe

Browse files
committed
next.config.mjs
1 parent 7f9028f commit b439dfe

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

TODO.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,20 @@ DONE:
1616
- npx create-next-app@latest <app-name> --use-npm
1717
(use npm to avoid symlinks)
1818

19+
- update next.config.mjs as follow
20+
21+
````
22+
/** @type {import('next').NextConfig} */
23+
const nextConfig = {
24+
output: "standalone",
25+
experimental: {
26+
serverMinification: false,
27+
},
28+
};
29+
30+
export default nextConfig;
31+
```
32+
1933
- add "node-url": "npm:url@^0.11.4" to the package.json
2034

2135
- add a wrangler.tom int the generated app

0 commit comments

Comments
 (0)