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