8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
|
const withTM = require("next-transpile-modules")(["@calcom/dayjs", "@calcom/ui"]);
|
||
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true,
|
||
|
};
|
||
|
|
||
|
module.exports = withTM(nextConfig);
|