zipline/next.config.js
2022-07-06 16:57:39 +00:00

16 lines
No EOL
257 B
JavaScript

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