zipline/next.config.js

16 lines
257 B
JavaScript
Raw Normal View History

2021-06-23 11:20:20 -07:00
module.exports = {
async redirects() {
return [
{
source: '/',
destination: '/dashboard',
permanent: true,
},
];
},
api: {
responseLimit: false,
},
2022-07-06 16:57:39 +00:00
poweredByHeader: false,
reactStrictMode: true,
};