Hi, I want to ask if its possible to separate vendor JS & CSS into individual folders ?
( Not being merged into vendor.css & vendor.js )
Hi,
You can separate the vendor JS and CSS files into individual folders. In Metronic, the vendor files are commonly referred to as plugins.bundle.js and plugins.bundle.css. These bundles are typically sourced from the node_modules directory. If you wish to keep them separate and not bundled, you can directly access them from the node_modules folder. When utilizing the gulp build process, you can refer to the tools/gulp.config.json file to locate the references to the plugins.bundle.* files. This approach allows you to organize your vendor assets according to your preferences.
Thanks