87fc9f2fb9
* feat: oauth reform for potential improvements * fix: update avatars with new pfp * fix: remove redundant include * feat: v3.6.0-rc4 Co-authored-by: dicedtomato <diced@users.noreply.github.com> * fix: remove console log Co-authored-by: dicedtomato <diced@users.noreply.github.com>
26 lines
526 B
JavaScript
26 lines
526 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
**/
|
|
module.exports = {
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/',
|
|
destination: '/dashboard',
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
images: {
|
|
domains: [
|
|
// For sharex icon in manage user
|
|
'getsharex.com',
|
|
// For flameshot icon, and maybe in the future other stuff from github
|
|
'raw.githubusercontent.com',
|
|
// Google Icon
|
|
'madeby.google.com',
|
|
],
|
|
},
|
|
poweredByHeader: false,
|
|
reactStrictMode: true,
|
|
};
|