Skip to content

Commit

Permalink
update TODO and builder/README files
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-piotrowicz committed Sep 20, 2024
1 parent 5a90513 commit b9c9d07
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 29 deletions.
16 changes: 1 addition & 15 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,14 @@ DONE:

- `npx create-next-app@latest <app-name> --use-npm` (use npm to avoid symlinks)

- update next.config.mjs as follows

```typescript
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
experimental: {
serverMinification: false,
},
};

export default nextConfig;
```

- add the following devDependency to the package.json:

```json
"node-url": "npm:url@^0.11.4",
"wrangler": "^3.77.0"
```

- add a wrangler.toml int the generated app
- add a wrangler.toml into the generated app

```toml
#:schema node_modules/wrangler/config-schema.json
Expand Down
14 changes: 0 additions & 14 deletions builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,6 @@

## Build your app

- update the `next.config.mjs` as follows

```typescript
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
experimental: {
serverMinification: false,
},
};

export default nextConfig;
```

- add the following `devDependency` to the `package.json`:

```json
Expand Down

0 comments on commit b9c9d07

Please sign in to comment.