Files
documenso/apps/web/next.config.js
Timur Ercan a78f8c8761 stuff
2023-01-07 17:52:46 +01:00

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;