landing-site/next.config.js

10 lines
170 B
JavaScript
Raw Permalink Normal View History

2022-11-07 17:12:00 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
scrollRestoration: true,
},
}
module.exports = nextConfig