mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
require("dotenv").config({ path: "../../.env" });
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
distDir: "build",
|
|
};
|
|
|
|
module.exports = nextConfig;
|