Files
sign/apps/web/next.config.js
2022-12-06 20:44:21 +01:00

18 lines
304 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async redirects() {
return [
{
source: "/",
destination: "/dashboard",
permanent: true,
},
];
},
reactStrictMode: true,
swcMinify: true,
distDir: "build",
};
module.exports = nextConfig;