mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 14:17:13 +01:00
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
import Index from './index';
|
|
|
|
export default Index;
|
|
|
|
export async function getServerSideProps() {
|
|
return {
|
|
props: {
|
|
pageDisabled: !!process.env.DISABLE_UI,
|
|
},
|
|
};
|
|
}
|