Skip to content

Commit

Permalink
fix: switch back to yarn due to export issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewthe2 committed Jun 15, 2024
1 parent 2607fe5 commit 6603ac1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ yarn install
Run in development mode.

```bash
pnpm dev
yarn dev
```


### Build

```bash
cd client
pnpm build
yarn build
next export -o ../server/app
```

Expand Down
2 changes: 1 addition & 1 deletion client/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const nextConfig = {
ANKI_HOST: 'http://127.0.0.1:5008',
PROXY: 'http://127.0.0.1:5008/p'
},
output: 'export',
output: 'standalone',
}

module.exports = nextConfig

0 comments on commit 6603ac1

Please sign in to comment.