32 lines
540 B
Markdown
32 lines
540 B
Markdown
# nextjs-package-manager-example-app
|
|
|
|
branch: `nextjs-package-manager/bun`
|
|
|
|
This repo is for testing building `Next.js` app with different package managers. This branch uses [bun](https://bun.sh) as the package manager.
|
|
|
|
## Getting Started
|
|
|
|
First, install the dependencies:
|
|
|
|
```zsh
|
|
bun install
|
|
```
|
|
|
|
## Development
|
|
|
|
First, run the development server:
|
|
|
|
```zsh
|
|
bun dev
|
|
```
|
|
|
|
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
|
|
|
## Production
|
|
|
|
To build the app for production, run:
|
|
|
|
```zsh
|
|
bun run build
|
|
```
|