peer-at-code-web/next.config.js
Nicolas VINCENT d8d5562224 home-page
Ajout d'une page accueil
2023-02-06 20:04:25 +01:00

10 lines
239 B
JavaScript

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