peer-at-code-web/next.config.js
2023-02-05 18:28:55 +01:00

10 lines
238 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true, // Recommended for the `pages` directory, default in `app`.
swcMinify: true,
experimental: {
appDir: true
}
};
module.exports = nextConfig;