Files
kan/packages/email/.react-email/next.config.js
2024-12-12 14:34:10 +00:00

11 lines
270 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
experimental: {
appDir: true,
externalDir: true // compile files that are located next to the .react-email directory
},
};
module.exports = nextConfig;