2024-11-02 00:28:57 +09:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-11-04 17:51:38 +09:00
|
|
|
const nextConfig = {
|
|
|
|
reactStrictMode: true,
|
|
|
|
experimental: {
|
|
|
|
optimizeCss: true,
|
|
|
|
scrollRestoration: true,
|
|
|
|
},
|
|
|
|
};
|
2024-11-02 00:28:57 +09:00
|
|
|
|
|
|
|
export default nextConfig;
|