duckil_plm/plm-app/next.config.mjs

11 lines
193 B
JavaScript
Raw Normal View History

2024-12-12 18:31:36 +09:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
experimental: {
optimizeCss: true,
scrollRestoration: true,
},
};
export default nextConfig;