2022-08-16 14:50:59 -07:00
|
|
|
/**
|
|
|
|
* @type {import('next').NextConfig}
|
|
|
|
**/
|
2021-06-23 11:20:20 -07:00
|
|
|
module.exports = {
|
2022-02-26 17:19:02 -08:00
|
|
|
async redirects() {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
source: '/',
|
|
|
|
destination: '/dashboard',
|
|
|
|
permanent: true,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
},
|
2022-09-23 21:19:27 -04:00
|
|
|
images: {
|
|
|
|
domains: [
|
|
|
|
// For sharex icon in manage user
|
|
|
|
'getsharex.com',
|
2022-09-24 10:41:03 -07:00
|
|
|
// For flameshot icon, and maybe in the future other stuff from github
|
|
|
|
'raw.githubusercontent.com',
|
2022-10-08 17:58:56 -07:00
|
|
|
// Discord Icon
|
|
|
|
'assets-global.website-files.com',
|
2022-09-23 21:19:27 -04:00
|
|
|
],
|
|
|
|
},
|
2022-07-06 16:57:39 +00:00
|
|
|
poweredByHeader: false,
|
|
|
|
reactStrictMode: true,
|
2022-10-19 22:43:01 -04:00
|
|
|
};
|