2
0
Files
cal/calcom/example-apps/credential-sync/next.config.js

10 lines
209 B
JavaScript
Raw Normal View History

2024-08-09 00:39:27 +02:00
/** @type {import('next').NextConfig} */
require("dotenv").config({ path: "../../.env" });
const nextConfig = {
reactStrictMode: true,
transpilePackages: ["@calcom/lib"],
};
module.exports = nextConfig;