forked from AkkomaGang/landing-site
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true,
|
||
|
experimental: {
|
||
|
scrollRestoration: true,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|