12 lines
186 B
JavaScript
12 lines
186 B
JavaScript
import Index from './index';
|
|
|
|
export default Index;
|
|
|
|
export async function getServerSideProps() {
|
|
return {
|
|
props: {
|
|
settingsDisabled: !!process.env.CLOUD_MODE,
|
|
},
|
|
};
|
|
}
|