umami/pages/settings/accounts.js

12 lines
182 B
JavaScript
Raw Normal View History

import Index from './index';
export default Index;
2022-10-27 21:14:34 +02:00
export async function getServerSideProps() {
return {
props: {
pageDisabled: !!process.env.DISABLE_UI,
},
};
}