/meli-test-ui

Primary LanguageJavaScript

This project was bootstrapped with Create Next App.

Find the most recent version of this guide at here. And check out Next.js repo for the most up-to-date info.

Meli-Test-UI

Table of Contents

Folder Structure

.
├── README.md
├── components
│   ├── breadcrumbs.js
│   ├── head.js
│   ├── nav.js
│   ├── product-detail.js
│   ├── product-list.js
│   └── product.js
├── config
│   └── Config.js
├── node_modules
│   └── [...]
├── pages
│   └── index.js
│   └── items.js
├── services
│   └── item.js
├── static
│   ├── assets
│   └── favicon.ico
└── styles
    └── styles.scss

Available Scripts

In the project directory, you can run:

npm run dev

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any errors in the console.

npm run build

Builds the app for production to the .next folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

npm run start

Starts the application in production mode. The application should be compiled with `next build` first.

See the section in Next docs about deployment for more information.