This project aims to build a simple ecommerce with React. Using Next for better project scalability, SEO, SSR, SSG.
npm run dev
# or
yarn dev
First, build the project
npm run build
# or
yarn build
And after run server:
npm start
# or
yarn start
run Unit tests
npm run test
# or
yarn test
To generate coverage
npm run test:coverage
# or
yarn test:coverage
run E2E tests
npm run cy:run
# or
yarn cy:run
Open http://localhost:3000 with your browser to see the result.