profil-next/next.config.js
2022-11-21 10:51:39 +01:00

10 lines
176 B
JavaScript

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