Frest admin manages all js files in app-assets folder and it also allows users to add
their own js files inside assets folder. Both app-assets and assets folders
can be found in root of the downloaded package. All vendor js can be found under
/app-assets/vendors/js/.
Frest admin manages all theme js files in src/js/ folder and users js
files inside assets/js/ folder. Both src/js/ and assets/ folders
can be found in root of the downloaded package.
Gulp command for dist-js will compile & minify all js files in app-assets/js
folder.
Js files structure for src/js/
frest-clean-bootstrap-admin-dashboard-template/
├── src/
| ├── js/
| | ├── core/
| | ├── scripts/
Following is the details of what all js folders.
| # | Folder | Details |
|---|---|---|
| 1 | core | core folder contains core libraries and core js files of frest admin template like bootstrap 4, jQuery, app and app-menu etc.. |
| 2 | scripts | scripts folder contains all js files that are used to initialize plugins and pages. |
It is not recommend to change any js files inside src/js/ folder to avoid future update
conflicts. If you still modify, it may requires to merge it manually with future updates.
JS files structure for assets/ folder.
frest-clean-bootstrap-admin-dashboard-template//
├── assets/
| ├── js/
| | ├── scripts.js
Please write your own custom JS inside assets/js/scripts.js file.
You can add your new JS files or folder in assets/ folder to avoid any future conflicts or
merge.