mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
16 lines
410 B
JavaScript
16 lines
410 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const path = require('path');
|
|
|
|
const { parsed: env } = require('dotenv').config({
|
|
path: path.join(__dirname, '../../.env.local'),
|
|
});
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@documenso/lib', '@documenso/prisma', '@documenso/trpc', '@documenso/ui'],
|
|
env,
|
|
};
|
|
|
|
module.exports = config;
|