In gulp.config.js the following lines need to be fixed:
src: "../src/{theme}/{demo}",
common_src: "../src/{theme}/{demo}",
The placeholder {demo} has to be removed to get the build working. Otherwise only the plugin assets will be generated.
It should be:
src: "../src/{theme}/",
common_src: "../src/{theme}/",
You're right,
but the theme variable is set by the demo name. So, try it yourself.
Hi René Kuss
Metronic ASP.Net Core comes with two demos, demo1 and demo30. To specify which demo to build, you can include --demo1 as a gulp build option. For example, you can run gulp --demo1 to build demo1.
Thank you