mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
export default () => null;
|
|
|
|
export async function getServerSideProps() {
|
|
const dest = process.env.CLOUD_MODE ? 'profile' : 'websites';
|
|
|
|
return {
|
|
redirect: {
|
|
destination: `/settings/${dest}`,
|
|
permanent: true,
|
|
},
|
|
};
|
|
}
|