2
0
Files
cal/calcom/packages/platform/examples/base/next.config.js
2024-08-09 00:39:27 +02:00

14 lines
381 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
transpilePackages: ["@calcom/platform-constants"],
webpack: (config, { webpack, buildId }) => {
config.resolve.fallback = {
...config.resolve.fallback, // if you miss it, all the other options in fallback, specified
};
return config;
},
};
module.exports = nextConfig;