File Manager Preferences
Our built-in File Manager is designed with a set of smart, predefined behavior options to ensure a seamless and intuitive user experience right out of the box.
That said, we understand that every workflow is unique. That’s why we’ve made it easy for you to customize File Manager settings to better suit your specific needs and preferences.
How to Set Your Preferences
To start customizing, simply include a fileManagerPreferences object inside your TOPOL_OPTIONS configuration. All your custom settings go inside this object.
fileManagerPreferences: {
// your custom options here
},Set Default File View (List or Tiles)
When you open the File Manager, it shows your files (folders and images) in a List view by default. You can switch between List view and Tiles view manually using the buttons in the top-right corner of the File Manager:

The default view is set to List view. If you'd prefer to see the Tiles view first by default, specify the defaultTilesView option in the fileManagerPreferences object and set it to true.
fileManagerPreferences: {
defaultTilesView: true, // true = tiles view, false = list view
},Hide Pexels Integration
By default, the File Manager comes with a built-in integration to Pexels, a free stock photo library. This integration allows users to search and add high-quality images directly from within the editor.

If you'd like to hide this integration, specify the hidePexelsIntegration option in the fileManagerPreferences object and set it to true.
fileManagerPreferences: {
hidePexelsIntegration: true, // true = hide, false = show
},