Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 1.14 KB

README.md

File metadata and controls

21 lines (18 loc) · 1.14 KB

Natours front-end web development project

Natours is a ficticious website of an nature tours agency. The website uses a lot of advanced CSS, and it has been well designed by Jonas Schmedtmann, the author of advanced CSS course, this project is part of this course. See it live here, powered by Github Pages.

Natours website

Getting ready for development

Fork the project and do the following

To start the development, you need to uncomment line 10 in index.html file. This way the linea.css file will load. Now, make sure you have npm properly installed in your system. Then, just run these from your terminal:

npm install
npm run start

These commands will start the development server and watch for changes in the sass code, compile it and show the results instantly in the browser.

Compiling for production

Now you should comment that line 10 in index.html file, as for production we will concat all the css in one file. Then, just run:

npm run build:css