Skip to content

Commit 5116872

Browse files
committed
Update README.md
1 parent 688f74c commit 5116872

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,26 @@ OpenNext aims to support all Next.js 13 features. Some features are work in prog
2121

2222
## Quick start
2323

24-
Naviate to your Next.js app
24+
1. Naviate to your Next.js app
2525

2626
```bash
2727
cd my-next-app
2828
```
2929

30-
Ensure the [`standalone` output](https://nextjs.org/docs/advanced-features/output-file-tracing#automatically-copying-traced-files) is enabled in your `next.config.js`:
30+
2. Ensure [standalone output](https://nextjs.org/docs/advanced-features/output-file-tracing#automatically-copying-traced-files) is enabled in your `next.config.js`:
3131

32-
```ts
33-
module.exports = {
34-
output: "standalone",
35-
};
32+
```diff
33+
/** @type {import('next').NextConfig} */
34+
const nextConfig = {
35+
+ output: "standalone"
36+
reactStrictMode: true,
37+
swcMinify: true,
38+
}
39+
40+
module.exports = nextConfig
3641
```
3742

38-
Build app
43+
3. Build app
3944

4045
```bash
4146
npx open-next build

0 commit comments

Comments
 (0)