zipline/next.config.js

14 lines
206 B
JavaScript
Raw Normal View History

2021-06-23 13:20:20 -05:00
module.exports = {
async redirects() {
return [
{
source: '/',
destination: '/dashboard',
permanent: true,
},
];
},
api: {
responseLimit: false,
},
};