profil-next/next.config.js
2022-11-21 10:33:40 +01:00

10 lines
177 B
JavaScript

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