mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
12 lines
182 B
JavaScript
12 lines
182 B
JavaScript
import Index from './index';
|
|
|
|
export default Index;
|
|
|
|
export async function getServerSideProps() {
|
|
return {
|
|
props: {
|
|
pageDisabled: !!process.env.DISABLE_UI,
|
|
},
|
|
};
|
|
}
|