benchmarks / next.config.js
vincelwt's picture
Update V2
7e5cb25 unverified
raw
history blame
No virus
191 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "standalone",
experimental: {
serverActions: true,
},
}
module.exports = nextConfig