mirror of
https://github.com/documenso/documenso
synced 2026-04-21 13:27:18 +00:00
17 lines
317 B
JavaScript
17 lines
317 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;
|