altarra/next.config.mjs
2026-01-08 18:18:26 +00:00

9 lines
191 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
optimizePackageImports: ['react', 'react-dom']
}
};
export default nextConfig;