zipline/next.config.js

11 lines
No EOL
166 B
JavaScript

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