[Vuejs]-How to customize the css of FileGator app

1👍

Folder dist/ is where compiled css and js are placed. If you’re using npm build process as explained here https://docs.filegator.io/development.html dist folder will be overwritten each time npm build is triggered.

If you don’t want to build with npm then you can use provided configuration.php file to add a simple style:

'add_to_head' => '<style>body{background:red}</style>',

or your own css file:

'add_to_head' => '<link href="/somewhere/your.css" rel=stylesheet>',

Leave a comment