mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 18:51:37 +10:00
18 lines
300 B
JavaScript
18 lines
300 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: "/",
|
|
destination: "/login",
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
distDir: "build",
|
|
};
|
|
|
|
module.exports = nextConfig;
|