mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-04-10 16:30:18 +02:00
19 lines
264 B
JavaScript
19 lines
264 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/',
|
|
destination: '/login',
|
|
permanent: false,
|
|
},
|
|
];
|
|
},
|
|
|
|
};
|
|
|
|
export default nextConfig;
|