zipline/next.config.js

14 lines
No EOL
206 B
JavaScript

module.exports = {
async redirects() {
return [
{
source: '/',
destination: '/dashboard',
permanent: true,
},
];
},
api: {
responseLimit: false,
},
};