nextjs redux starter
1.0.0
Express、Redux Toolkit、Styled Components、およびReact-Testing-Libraryを備えたJSスターターキットを意見しました。
Next.jsは、最新のユニバーサルReactアプリを作成するための素晴らしい最小限のフレームワークです。ただし、複雑なスパを構築するにはもう少し機能が必要な場合があります。そのため、このプロジェクトが生まれます。
git clone https://github.com/CodementorIO/nextjs-redux-starter my-project
cd my-project
yarn install
yarn start
次に、 http://localhost:3100/を開き、アプリを表示します。
npm run buildが終了した後、実行します
yarn serve
now使用する場合は、 now.json変更するだけです。JSONConfig。
├── README.md
├── next.config.js
├── now.json
├── package.json
├── pages
│ ├── _app.js
│ ├── _document.js
│ ├── about.js
│ └── index.js
├── public
│ └── static
├── server
│ └── index.js
├── src
│ ├── components
│ ├── config.js
│ ├── features
│ ├── libs
│ ├── store.js
│ ├── tests
│ │ ├── components
│ │ └── test-utils.js
│ └── theme.js
└── yarn.lock