# Page Specific Settings
If you want to override specific settings for specific page only, you can do that as well.
# Usage
To change a setting for a specific page, use setConfig
method and return an object with your settings like below:
const AnalyticsDashboard = () => <h1>Analytics Dashboard</h1>
AnalyticsDashboard.setConfig = () => {
return {
mode: 'dark'
...
}
}
export default AnalyticsDashboard
Note
You can override any config property at page level. Please refer Theme Configurations doc for each configurable property.
Important
It is not advisable to override layout
or rtl
property for a specific page, they should be set only globally. Overriding them at page level will throw a memory leak error.