nextjs redux starter
1.0.0
Un kit de démarrage opinionné Next.js avec boîte à outils Express, Redux, composants stylisés et réactif-test-bibliothèque.
Next.js est un cadre impressionnant et minimaliste pour créer une application réague universelle moderne. Cependant, il y a des moments où nous avons besoin d'un peu plus de fonctionnalités pour construire un spa complexe. C'est pourquoi ce projet est né.
git clone https://github.com/CodementorIO/nextjs-redux-starter my-project
cd my-project
yarn install
yarn start
Ensuite, ouvrez http://localhost:3100/ pour voir votre application.
Une fois npm run build terminée, courez
yarn serve
Si vous préférez utiliser now , modifiez simplement now.json config.
├── 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