duckil_plm/plm-app/next.config.mjs
2024-12-19 11:59:04 +09:00

11 lines
193 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
optimizeCss: true,
scrollRestoration: true,
},
};
export default nextConfig;