Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 676 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 676 Bytes

1. Getting Started

Project's source files are placed in ./src/ directory.

  • ./src/assets - default static files (eg. image placeholders). You should replace them with your own files.
  • ./src/tailwind/ - Tailwind config file used to build the theme. Variables used in Theme Customizer are located in tailwind.config.js file.

All your pages (templates) are stored in separated .pug or .html files (depends on your export preferences)

  • ./src/pug/*.pug
  • ./src/html/*.html

2. Installation

# Install dependencies
npm install 

# Run dev server with live preview (Browsersync)
npm run watch

# Or make a production build 
npm run build