This is a quick quide that will help you build your first page.
The webflow workflow can be bypassed all together if you prefer to simply edit the static HTML and CSS
files. All the ready to use files are locate in dist
folder.
But if you are experienced developer and want to speed up development process follow steps bellow.
Download and install Node.js and Gulp to get started. To install Node visit https://nodejs.org/en/ To install Gulp, run the following command npm install gulp -g
Open terminal, make sure your command line prompt is at the root of the theme folder.
Run npm install
to install all theme's dependencies.
Webpack is used to manage theme development process. Open terminal, make sure your command line prompt is at the root of the theme folder to use following commands:
npm start
This will compile and track all the SCSS, JS and HTML
files for changes,
start a local webserver.
npm run build
Generates a /dist directory with all the
production files.