peer-at-code-web/next.config.js
Nicolas VINCENT b46a73ebe7 update/home-page-fix
update home page
2023-02-23 14:20:33 +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;