documenso/apps/web/next.config.js
2022-12-06 21:40:06 +01:00

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;