umami/pages/settings/accounts.js

12 lines
186 B
JavaScript
Raw Normal View History

import Index from './index';
export default Index;
2022-10-13 00:35:33 +02:00
export async function getServerSideProps() {
return {
props: {
settingsDisabled: !!process.env.CLOUD_MODE,
},
};
}