11 lines
270 B
JavaScript
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; |