somehow working without transpile

This commit is contained in:
Timur Ercan
2023-01-07 15:45:03 +01:00
parent f3ad4b561b
commit 1c6c5a8cc1
7 changed files with 10313 additions and 28 deletions

View File

@@ -1,8 +1,17 @@
/** @type {import('next').NextConfig} */
require("dotenv").config({ path: "../../.env" });
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
distDir: "build",
};
// const withTM = require("next-transpile-modules")(["@documenso/prisma"]);
// const plugins = [];
// plugins.push(withTM);
// const moduleExports = () =>
// plugins.reduce((acc, next) => next(acc), nextConfig);
module.exports = nextConfig;