10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
require("dotenv").config({ path: "../../.env" });
|
||
|
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true,
|
||
|
transpilePackages: ["@calcom/lib"],
|
||
|
};
|
||
|
|
||
|
module.exports = nextConfig;
|