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