umami/pages/settings/profile.js
2022-10-27 12:14:34 -07:00

12 lines
182 B
JavaScript

import Index from './index';
export default Index;
export async function getServerSideProps() {
return {
props: {
pageDisabled: !!process.env.DISABLE_UI,
},
};
}