mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
13 lines
253 B
JavaScript
13 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,
|
|
},
|
|
};
|
|
}
|