# Rakumeo LandingPage

## 依存フレームワーク
  - NextJS
  - react
  - jsmin
  - amotify

## 環境構築

### node modulesを追加
```bash
npm i
# or
yarn install
# or
pnpm install
```

### サーバーを立ち上げる
```bash
# develop build
npm start

# production build
npm run build
node serverDist/server/index.js
```

このプロジェクトは、
NextJS AppRouter とCustomServer
で構築されています。

.envファイルにて、PORT番号があります。

(デフォルト: 10400)

[http://localhost:10400](http://localhost:10400) に開発サーバが立ち上がります。