zipline/next.config.js
2022-08-26 20:38:31 -07:00

16 lines
No EOL
263 B
JavaScript

/**
* @type {import('next').NextConfig}
**/
module.exports = {
async redirects() {
return [
{
source: '/',
destination: '/dashboard',
permanent: true,
},
];
},
poweredByHeader: false,
reactStrictMode: true,
};