Files
page-builder/next.config.mjs

10 lines
159 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
appDir: true,
},
};
export default nextConfig;