Files
sign/apps/web/next.config.js

19 lines
392 B
JavaScript
Raw Normal View History

2023-01-07 15:45:03 +01:00
require("dotenv").config({ path: "../../.env" });
/** @type {import('next').NextConfig} */
2022-11-14 23:12:51 +01:00
const nextConfig = {
reactStrictMode: true,
swcMinify: false,
2023-05-29 10:38:24 -05:00
transpilePackages: [
"@documenso/prisma",
"@documenso/lib",
"@documenso/ui",
"@documenso/pdf",
"@documenso/features",
"@documenso/signing",
"react-signature-canvas",
],
2022-11-24 12:21:45 +01:00
};
2022-11-14 23:12:51 +01:00
2023-05-29 10:38:24 -05:00
module.exports = nextConfig;