mirror of
https://github.com/Ravinou/borgwarehouse
synced 2026-03-14 22:35:46 +01:00
24 lines
433 B
TypeScript
24 lines
433 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
reactStrictMode: false,
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/setup-wizard',
|
|
destination: '/setup-wizard/1',
|
|
permanent: true,
|
|
},
|
|
{
|
|
source: '/manage-repo',
|
|
destination: '/',
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|