An open API service indexing awesome lists of open source software.

https://github.com/bacdong/nextjs-example

The nextjs application using typescript
https://github.com/bacdong/nextjs-example

ant-design bootstrap4 nextjs rxjs superagent typescript

Last synced: 7 months ago
JSON representation

The nextjs application using typescript

Awesome Lists containing this project

README

          

# NextJS Example

## Reference Links
* [Next.js](https://nextjs.org/) version 11.1.2.

## Enviroment
* NodeJS: v16.10.0
* NPM: 7.24.0

## Enviroment Installation
* Install packages:
```
cd example/
npm install
npm install --also=dev
```

## Start App
```
cd example/
npm run dev
npm run dev -- -p
```

## Build & Deploy
* Build
```
cd example/
npx next build
```

* Deploy
```
docker build . -t example
docker run -p 3000:3000 example
```