Before running the application we need to build theme assets:
Start a command prompt window or terminal and change directory to starterkit/_keenthemes/tools
cd starterkit/_keenthemes/tools
Install dependencies with either one, yarn or npm:
yarn install
You can use either one.
npm install
This command will fetch all dependencies listed in starterkit/_keenthemes/tools/package.json and place them into _keenthemes/tools/node_modules folder.
You can use Gulp
or Webpack commands to bundle theme assets.
The below command will compile all the assets(sass, js, media) to starterkit/assets folder:
For gulp use command:
gulp
For webpack use command:
npm run build
Note on the package.json file. This step is very important for Webpack in Metronic template. The default package.json works for Gulp. To make it work for Webpack, you have to modify tools/package.json and remove "type": "module".
Otherwise, it will cause compilation error when running the build command.