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
- Host: GitHub
- URL: https://github.com/bacdong/nextjs-example
- Owner: Bacdong
- Created: 2021-10-16T19:40:20.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-16T20:46:24.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T22:29:28.034Z (9 months ago)
- Topics: ant-design, bootstrap4, nextjs, rxjs, superagent, typescript
- Language: TypeScript
- Homepage:
- Size: 112 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```