File tree Expand file tree Collapse file tree 2 files changed +1
-29
lines changed Expand file tree Collapse file tree 2 files changed +1
-29
lines changed Original file line number Diff line number Diff line change @@ -15,27 +15,13 @@ DONE:
15
15
16
16
- ` npx create-next-app@latest <app-name> --use-npm ` (use npm to avoid symlinks)
17
17
18
- - update next.config.mjs as follows
19
-
20
- ``` typescript
21
- /** @type {import('next').NextConfig} */
22
- const nextConfig = {
23
- output: " standalone" ,
24
- experimental: {
25
- serverMinification: false ,
26
- },
27
- };
28
-
29
- export default nextConfig ;
30
- ```
31
-
32
18
- add the following devDependency to the package.json:
33
19
34
20
``` json
35
21
"wrangler" : " ^3.78.6"
36
22
```
37
23
38
- - add a wrangler.toml int the generated app
24
+ - add a wrangler.toml into the generated app
39
25
40
26
``` toml
41
27
# :schema node_modules/wrangler/config-schema.json
Original file line number Diff line number Diff line change 2
2
3
3
## Build your app
4
4
5
- - update the ` next.config.mjs ` as follows
6
-
7
- ``` typescript
8
- /** @type {import('next').NextConfig} */
9
- const nextConfig = {
10
- output: " standalone" ,
11
- experimental: {
12
- serverMinification: false ,
13
- },
14
- };
15
-
16
- export default nextConfig ;
17
- ```
18
-
19
5
- add the following ` devDependency ` to the ` package.json ` :
20
6
21
7
``` json
You can’t perform that action at this time.
0 commit comments