borgwarehouse/next.config.js
2024-12-08 11:17:50 +01:00

23 lines
408 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
// nextConfig
images: {
unoptimized: true,
},
reactStrictMode: false,
async redirects() {
return [
{
source: '/setup-wizard',
destination: '/setup-wizard/1',
permanent: true,
},
{
source: '/manage-repo',
destination: '/',
permanent: true,
},
];
},
};