mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
20 lines
402 B
JavaScript
20 lines
402 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
|
|
output: 'standalone',
|
|
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/',
|
|
destination: '/admin',
|
|
permanent: true, // The browser will save the redirect in its cache, empty the cache to change the redirect
|
|
},
|
|
]
|
|
},
|
|
|
|
};
|
|
|
|
export default nextConfig;
|