peer-at-code-web/next.config.js
2023-02-12 18:39:34 +01:00

10 lines
178 B
JavaScript

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