umami/pages/settings/index.js

11 lines
177 B
JavaScript
Raw Normal View History

2023-01-10 08:59:26 +01:00
export default () => null;
export async function getServerSideProps() {
return {
redirect: {
destination: '/buttons/websites',
2023-01-10 08:59:26 +01:00
permanent: true,
},
};
}