Files
explainegy-nextjs/next.config.js
2022-12-18 16:56:58 +01:00

10 lines
156 B
JavaScript

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