nextjs redux starter
1.0.0
带有Express,Redux工具包,样式组件和反应测试库的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 。
├── 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