38 lines
682 B
Markdown
38 lines
682 B
Markdown
## Overview
|
|
|
|
- Next.js 15.x
|
|
- React 19
|
|
- TypeScript
|
|
- Tailwind CSS V4
|
|
|
|
|
|
> Windows Users: place the repository near the root of your drive if you face issues while cloning.
|
|
|
|
1. Install dependencies:
|
|
```bash
|
|
npm install
|
|
# or
|
|
yarn install
|
|
```
|
|
> Use `--legacy-peer-deps` flag if you face peer-dependency error during installation.
|
|
|
|
2. Start the development server:
|
|
```bash
|
|
npm run dev
|
|
# or
|
|
yarn dev
|
|
```
|
|
|
|
3. 정적빌드 - SG (Static Generation)
|
|
npm run build
|
|
|
|
4. 정적빌드 테스트
|
|
node server.js
|
|
|
|
|
|
|
|
* 환경변수 파일
|
|
npm run dev : .env -> .env.development -> .env.local
|
|
npm run build : .env -> .env.production -> .env.local
|
|
|