mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
19 lines
392 B
JavaScript
19 lines
392 B
JavaScript
require("dotenv").config({ path: "../../.env" });
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: false,
|
|
transpilePackages: [
|
|
"@documenso/prisma",
|
|
"@documenso/lib",
|
|
"@documenso/ui",
|
|
"@documenso/pdf",
|
|
"@documenso/features",
|
|
"@documenso/signing",
|
|
"react-signature-canvas",
|
|
],
|
|
};
|
|
|
|
module.exports = nextConfig;
|